Skip to content

Instantly share code, notes, and snippets.

@kartikshah
Created May 15, 2011 21:16
Show Gist options
  • Save kartikshah/973548 to your computer and use it in GitHub Desktop.
Save kartikshah/973548 to your computer and use it in GitHub Desktop.
4Clojure - 42
(defn fct [n] (if (= n 1) 1 (reduce #(* %1 %2) (range 1 (+ n 1)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment