Skip to content

Instantly share code, notes, and snippets.

Created August 22, 2011 11:07
Show Gist options
  • Save anonymous/1162149 to your computer and use it in GitHub Desktop.
Save anonymous/1162149 to your computer and use it in GitHub Desktop.
;; aktowns's solution to Count a Sequence
;; https://4clojure.com/problem/22
(fn [x] (reduce #(+ %1 %2) (map (fn [_] 1) x)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment