Skip to content

Instantly share code, notes, and snippets.

Created September 9, 2011 22:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1207458 to your computer and use it in GitHub Desktop.
Save anonymous/1207458 to your computer and use it in GitHub Desktop.
;; tarcieri's solution to Flatten a Sequence
;; https://4clojure.com/problem/28
(fn zomgflatten
([input]
(seq (zomgflatten input [])))
([seq output]
(reduce
(fn [out head]
(if (or (list? head) (vector? head))
(zomgflatten head out)
(conj out head)))
output seq)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment