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

LuhnValidator.java 187B

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