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

Hamming.java 335B

123456789101112
  1. class Hamming {
  2. Hamming(String leftStrand, String rightStrand) {
  3. throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
  4. }
  5. int getHammingDistance() {
  6. throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
  7. }
  8. }