* collatz-conjecture: add start implementation. * collatz-conjecture: update with @FridaTveit 's suggestion
@@ -0,0 +1,7 @@
+class CollatzCalculator {
+
+ int computeStepCount(int start) {
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
+ }
+}