Procházet zdrojové kódy

collatz-conjecture: add start implementation. (#1021)

* collatz-conjecture: add start implementation.

* collatz-conjecture: update with @FridaTveit 's suggestion
Sam Warner před 8 roky
rodič
revize
8430996488

+ 0
- 0
exercises/collatz-conjecture/src/main/java/.keep Zobrazit soubor


+ 7
- 0
exercises/collatz-conjecture/src/main/java/CollatzCalculator.java Zobrazit soubor

1
+class CollatzCalculator {
2
+
3
+    int computeStepCount(int start) {
4
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
5
+    }
6
+
7
+}