Przeglądaj źródła

luhn: update starter implementation

Stuart Kent 9 lat temu
rodzic
commit
3b21174589

+ 0
- 0
exercises/luhn/src/main/java/.keep Wyświetl plik


+ 7
- 0
exercises/luhn/src/main/java/LuhnValidator.java Wyświetl plik

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
+}