Skip to content

Instantly share code, notes, and snippets.

@TheSeamau5
Created August 29, 2015 23:57
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 TheSeamau5/f3da11cdf255d2d313f2 to your computer and use it in GitHub Desktop.
Save TheSeamau5/f3da11cdf255d2d313f2 to your computer and use it in GitHub Desktop.
powerset : List a -> List (List a)
powerset =
List.foldr (\x acc -> acc ++ List.map ((::) x) acc) [[]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment