Selaa lähdekoodia

Merge pull request #1000 from sjwarner-bp/isogram-starter-impl

Isogram: add starter implementation
Stuart Kent 8 vuotta sitten
vanhempi
commit
679875d3d0
No account linked to committer's email

+ 0
- 0
exercises/isogram/src/main/java/.keep Näytä tiedosto


+ 7
- 0
exercises/isogram/src/main/java/IsogramChecker.java Näytä tiedosto

@@ -0,0 +1,7 @@
1
+class IsogramChecker {
2
+
3
+    boolean isIsogram(String phrase) {
4
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
5
+    }
6
+
7
+}