Просмотр исходного кода

Added stubs to LargestSeriesProductCalculator

Make changes per review comments

Made class and methods package private
Eddie Legg 9 лет назад
Родитель
Сommit
38b75f7fbe

+ 7
- 3
exercises/largest-series-product/src/main/java/LargestSeriesProductCalculator.java Просмотреть файл

@@ -1,5 +1,9 @@
1
-public class LargestSeriesProductCalculator {
2
-
3
-
1
+class LargestSeriesProductCalculator {
2
+    LargestSeriesProductCalculator(String inputNumber) {
3
+        throw new UnsupportedOperationException ("Delete this statement and write your own implementation.");
4
+    }
4 5
 
6
+    long calculateLargestProductForSeriesLength(int numberOfDigits) {
7
+        throw new UnsupportedOperationException ("Delete this statement and write your own implementation.");
8
+    }
5 9
 }