Permutations()
Open
enhancement
hacktoberfest
- Dominant language
- Go
- Stars
- 144
- Forks
- 11
- PR merge metrics
- No merged PRs in 30d
Description
The permutations function returns the list of all permutations of the argument.
```haskell
[a] -> [[a]]
permutations "abc"
["abc","bac","cba","bca","cab","acb"]
```
Contributor guide
Assessment
This issue has not been assessed yet.