Browse Source

Isogram: add starter implementation

Sam Warner 8 years ago
parent
commit
42c7e0006b

+ 0
- 0
exercises/isogram/src/main/java/.keep View File


+ 7
- 0
exercises/isogram/src/main/java/IsogramChecker.java View File

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