rotational-cipher: add starter implementation
@@ -0,0 +1,11 @@
+class RotationalCipher {
+
+ RotationalCipher(int shiftKey) {
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
+ }
+ String rotate(String data) {
+}