Created
August 23, 2019 13:07
-
-
Save elbrujohalcon/ed9b69a7712150bccc113ed163af6bef 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([H|T]) -> [ [H|P] || P <- perms(T) ]. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment