Skip to content

Commit

Permalink
Merge pull request #683 from Smarticles101/twelve-days-starter-implem…
Browse files Browse the repository at this point in the history
…entation

twelve-days: create and validate starter implementation
  • Loading branch information
stkent authored Jul 4, 2017
2 parents 1f2f948 + 5c29756 commit ade962a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Empty file.
9 changes: 9 additions & 0 deletions exercises/twelve-days/src/main/java/TwelveDays.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class TwelveDays {
String verse(int verseNumber) {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}

String verses(int startVerse, int endVerse) {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}
}

0 comments on commit ade962a

Please sign in to comment.