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

Scrabble.java 307B

123456789101112
  1. final class Scrabble {
  2. Scrabble(String word) {
  3. throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
  4. }
  5. int getScore() {
  6. throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
  7. }
  8. }