Skip to content

Commit ade962a

Browse files
authored
Merge pull request exercism#683 from Smarticles101/twelve-days-starter-implementation
twelve-days: create and validate starter implementation
2 parents 1f2f948 + 5c29756 commit ade962a

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

exercises/twelve-days/src/main/java/.keep

Whitespace-only changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class TwelveDays {
2+
String verse(int verseNumber) {
3+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
4+
}
5+
6+
String verses(int startVerse, int endVerse) {
7+
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
8+
}
9+
}

0 commit comments

Comments
 (0)