Skip to content

Instantly share code, notes, and snippets.

@devasiajoseph
Created January 18, 2014 03:36
Show Gist options
  • Save devasiajoseph/8485836 to your computer and use it in GitHub Desktop.
Save devasiajoseph/8485836 to your computer and use it in GitHub Desktop.
Clojure large factorial
(defn factorial [n] (reduce *' (range 1 (inc n))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment