Last active
May 25, 2018 14:10
-
-
Save benjamin-hodgson/418672227d0cbaa6f1cb47fd9265d066 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
permutations :: [a] -> [[a]] | |
permutations [] = [[]] | |
permutations (x:xs) = concatMap (insertions x) (permutations xs) | |
where | |
insertions x [] = [[x]] | |
insertions x zs@(y:ys) = (x:zs) : [y:ins | ins <- insertions x ys] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment