Skip to content

Instantly share code, notes, and snippets.

@jackfarrington
Created August 4, 2016 23:59
Show Gist options
  • Save jackfarrington/bb9b4bc490163d51f9926ba46b38335b to your computer and use it in GitHub Desktop.
Save jackfarrington/bb9b4bc490163d51f9926ba46b38335b to your computer and use it in GitHub Desktop.
Pascal's triangle (Clojure)
#(reduce (fn [a _] (concat [1] (map + a (rest a)) [1])) [1] (range 1 %))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment