Procházet zdrojové kódy

Merge pull request #586 from exercism/545-fix

sum-of-multiples: update starter implementation
FridaTveit před 9 roky
rodič
revize
da79275dfd

+ 10
- 2
exercises/sum-of-multiples/src/main/java/SumOfMultiples.java Zobrazit soubor

@@ -1,3 +1,11 @@
1
-public class SumOfMultiples {
2
-    
1
+class SumOfMultiples {
2
+
3
+    SumOfMultiples(int number, int[] set) {
4
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
5
+    }
6
+
7
+    int getSum() {
8
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
9
+    }
10
+
3 11
 }