소스 검색

Merge pull request #559 from exercism/537-hamming-starter

hamming: standardize starter implementation
FridaTveit 9 년 전
부모
커밋
414d96c68b
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9
    0
      exercises/hamming/src/main/java/Hamming.java

+ 9
- 0
exercises/hamming/src/main/java/Hamming.java 파일 보기

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