Просмотр исходного кода

Isogram: add starter implementation

Sam Warner 8 лет назад
Родитель
Сommit
42c7e0006b

+ 0
- 0
exercises/isogram/src/main/java/.keep Просмотреть файл


+ 7
- 0
exercises/isogram/src/main/java/IsogramChecker.java Просмотреть файл

@@ -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
+}