Explorar el Código

Merge pull request #587 from exercism/546-fix

luhn: update starter implementation
FridaTveit hace 9 años
padre
commit
8fe9c1977a

+ 0
- 0
exercises/luhn/src/main/java/.keep Ver fichero


+ 7
- 0
exercises/luhn/src/main/java/LuhnValidator.java Ver fichero

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