Created
April 28, 2011 21:07
-
-
Save dbyrne/947342 to your computer and use it in GitHub Desktop.
power set
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(fn [xs] | |
(let [n (count xs) | |
m (Math/pow 2 n)] | |
(for [i (range m)] | |
(for [j (range n) :when (bit-test i j)] | |
(nth xs j))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment