Skip to content

Instantly share code, notes, and snippets.

@TheSeamau5
Created April 28, 2016 02:35
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/916a804b61c7b89bb614fed593d853ef to your computer and use it in GitHub Desktop.
Save TheSeamau5/916a804b61c7b89bb614fed593d853ef to your computer and use it in GitHub Desktop.
powerSet : String -> List String
powerSet =
String.words
>> List.foldr (\x acc -> acc ++ List.map ((::) x) acc) [[]]
>> List.map (String.join " ")
>> List.filter ((/=) "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment