Isogram: add starter implementation
@@ -0,0 +1,7 @@
+class IsogramChecker {
+
+ boolean isIsogram(String phrase) {
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
+ }
+}