Skip to content

Instantly share code, notes, and snippets.

@secwang
Created December 28, 2014 14:39
Show Gist options
  • Select an option

  • Save secwang/0d332f0e9fce78e8e2f5 to your computer and use it in GitHub Desktop.

Select an option

Save secwang/0d332f0e9fce78e8e2f5 to your computer and use it in GitHub Desktop.
snippets for subset of list
(defn subsets [things]
(if (empty? things) '(())
(let [srt (subsets (rest things))]
(concat (map #(cons (first things) %) srt) srt))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment