Просмотр исходного кода

rotational-cipher: add starter implementation

Sam Warner 8 лет назад
Родитель
Сommit
7937ae773c

+ 0
- 0
exercises/rotational-cipher/src/main/java/.keep Просмотреть файл


+ 11
- 0
exercises/rotational-cipher/src/main/java/RotationalCipher.java Просмотреть файл

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