@@ -0,0 +1,7 @@
+final class LuhnValidator {
+
+ boolean isValid(String candidate) {
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
+ }
+}