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

IsbnVerifier.java 185B

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