Преглед изворни кода

hamming: standardize starter implementation

Stuart Kent пре 9 година
родитељ
комит
d9948851e1
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
 }