Created
August 23, 2019 13:26
-
-
Save elbrujohalcon/3b97588e6979bd43c788d9648521b156 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
-module joe. | |
-export [test/0, perms/1]. | |
test() -> | |
[[]] = joe:perms(""), | |
["a"] = joe:perms("a"), | |
["ab", "ba"] = joe:perms("ab"), | |
["ba", "ab"] = joe:perms("ba"), | |
["123","132","213","231","312","321"] = joe:perms("123"), | |
ok. | |
perms([]) -> [[]]; | |
perms(List) -> [ [H|T] || H <- List, T <- perms(List -- [H])]. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment