Browse Source

Merge pull request #1022 from sjwarner-bp/rotational-cipher-starter

rotational-cipher: add starter implementation
FridaTveit 8 years ago
parent
commit
116f3c90dd
No account linked to committer's email

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


+ 11
- 0
exercises/rotational-cipher/src/main/java/RotationalCipher.java View 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
+}