Created
June 6, 2018 05:57
-
-
Save matoous/187396227fb29d99b330c5980f68b8da to your computer and use it in GitHub Desktop.
This file contains hidden or 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
permutate :: (Eq a) => [a] -> [[a]] | |
permutate [] = [[]] | |
permutate l = [a:x | a <- l, x <- permutate $ filter (\x -> x /= a) l] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment