Skip to content

Instantly share code, notes, and snippets.

@tom-lpsd
Created July 30, 2011 08:44
Show Gist options
  • Save tom-lpsd/1115336 to your computer and use it in GitHub Desktop.
Save tom-lpsd/1115336 to your computer and use it in GitHub Desktop.
combinations.hs
combinations :: [a] -> [[a]]
combinations [] = [[]]
combinations (x:xs) = concat [[t, (x:t)] | t <- combinations xs]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment