lots of exercises in java... from https://github.com/exercism/java

HandshakeCalculator.java 221B

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