Browse Source
Merge pull request #1022 from sjwarner-bp/rotational-cipher-starter
rotational-cipher: add starter implementation
FridaTveit
8 years ago
No account linked to committer's email
|
|
@@ -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
|
+}
|