lots of exercises in java... from https://github.com/exercism/java

IsogramChecker.java 181B

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