I want to calculate !1000 in clojure, how can I do this without getting a integer-overflow exception?
!1000
My factorial code is right now: (reduce * (r
(reduce * (r
Put N at the end of the number which makes it a bigint,
(reduce * (range 1N 1001N))