Ver código fonte

rotational-cipher: add starter implementation

Sam Warner 8 anos atrás
pai
commit
7937ae773c

+ 0
- 0
exercises/rotational-cipher/src/main/java/.keep Ver arquivo


+ 11
- 0
exercises/rotational-cipher/src/main/java/RotationalCipher.java Ver arquivo

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