Przeglądaj źródła

secret-handshake: update starter implementation

Stuart Kent 9 lat temu
rodzic
commit
ae3268ea54

+ 5
- 1
exercises/secret-handshake/src/main/java/HandshakeCalculator.java Wyświetl plik

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
 }