Sfoglia il codice sorgente

rotational-cipher: add starter implementation

Sam Warner 8 anni fa
parent
commit
7937ae773c

+ 0
- 0
exercises/rotational-cipher/src/main/java/.keep Vedi File


+ 11
- 0
exercises/rotational-cipher/src/main/java/RotationalCipher.java Vedi File

@@ -0,0 +1,11 @@
1
+class RotationalCipher {
2
+
3
+    RotationalCipher(int shiftKey) {
4
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
5
+    }
6
+
7
+    String rotate(String data) {
8
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
9
+    }
10
+
11
+}