Explorar el Código

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

* collatz-conjecture: add start implementation.

* collatz-conjecture: update with @FridaTveit 's suggestion
Sam Warner hace 8 años
padre
commit
8430996488

+ 0
- 0
exercises/collatz-conjecture/src/main/java/.keep Ver fichero


+ 7
- 0
exercises/collatz-conjecture/src/main/java/CollatzCalculator.java Ver fichero

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