Skip to content

Commit 61ac917

Browse files
exercise stubs - part 3 of 4 (#286)
[no important files changed]
1 parent ecaeadd commit 61ac917

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

exercises/practice/raindrops/source/raindrops.d

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
pure string convert(immutable int n)
2+
{
3+
// implement this function
4+
}
5+
16
unittest
27
{
38
immutable int allTestsEnabled = 0;

exercises/practice/reverse-string/source/reverse_string.d

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
module reverse_string;
22

3+
pure string reverseString(immutable string value)
4+
{
5+
// implement this function
6+
}
7+
38
unittest
49
{
510
immutable int allTestsEnabled = 0;

exercises/practice/rna-transcription/source/rna_transcription.d

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
module rna_transcription;
22

3+
pure string toRna(immutable string dna)
4+
{
5+
// implement this function
6+
}
7+
38
unittest
49
{
510
import std.exception : assertThrown;

exercises/practice/roman-numerals/source/roman_numerals.d

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ module roman_numerals;
22

33
import std.stdio;
44

5+
string convert(ulong number)
6+
{
7+
// implement this function
8+
}
9+
510
unittest
611
{
712

0 commit comments

Comments
 (0)