Browse Source

secret-handshake: update starter implementation

Stuart Kent 9 years ago
parent
commit
ae3268ea54
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      exercises/secret-handshake/src/main/java/HandshakeCalculator.java

+ 5
- 1
exercises/secret-handshake/src/main/java/HandshakeCalculator.java View File

@@ -1,5 +1,9 @@
1
-final class HandshakeCalculator {
1
+import java.util.List;
2 2
 
3
+final class HandshakeCalculator {
3 4
 
5
+    List<Signal> calculateHandshake(int number) {
6
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
7
+    }
4 8
 
5 9
 }