Skip to content

Instantly share code, notes, and snippets.

@quux00
Created September 9, 2012 23:41
Show Gist options
  • Save quux00/3687956 to your computer and use it in GitHub Desktop.
Save quux00/3687956 to your computer and use it in GitHub Desktop.
;; answer from nikkomega to 4clojure.com problem 28
(defn flt [s]
(if (sequential? s)
(mapcat flt s)
(list s)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment