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

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

Isogram: add starter implementation
Stuart Kent 8 лет назад
Родитель
Сommit
679875d3d0
Аккаунт пользователя с таким Email не найден

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