Skip to content

Instantly share code, notes, and snippets.

@buchgr
Created October 29, 2012 21:39
Show Gist options
  • Select an option

  • Save buchgr/3976707 to your computer and use it in GitHub Desktop.

Select an option

Save buchgr/3976707 to your computer and use it in GitHub Desktop.
{-WETT-}
perms :: [Char] -> [[Char]]
perms [] = [""]
perms xs = reverse $ sort $ nub [x:y | x <- xs, y <- perms $ delete x xs]
{-TTEW-}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment