History of Idiom 31 > diff from v41 to v42
Edit summary for version 42 by anon20171221:
[Clojure] formatting and docs
[Clojure] formatting and docs
↷
Version 41
2017-12-21, 03:00:11
Version 42
2017-12-21, 03:16:17
Idiom #31 Recursive factorial (simple)
Create recursive function f which returns the factorial of non-negative integer i, calculated from f(i-1)
Idiom #31 Recursive factorial (simple)
Create recursive function f which returns the factorial of non-negative integer i, calculated from f(i-1)
Comments bubble
Replace 1N (clojure.lang.BigInt) with 1 (java.lang.Long) if you don't need to calculate anything above (f 20).
Comments bubble