Skip to content

Instantly share code, notes, and snippets.

@gclaramunt
Created March 11, 2015 04:03
Show Gist options
  • Save gclaramunt/014278872e2216721a31 to your computer and use it in GitHub Desktop.
Save gclaramunt/014278872e2216721a31 to your computer and use it in GitHub Desktop.
combinations:: String -> [String]
combinations [] = []
combinations (x:xs) = [x] : combs ++ fmap (x :) combs
where combs = combinations xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment