Permutations
Try to solve the Permutations problem.
Statement
Given an input string, word, return all possible permutations of the string.
Note: The order of permutations does not matter.
Constraints:
- 
All characters in
wordare unique. - 
...
 
Try to solve the Permutations problem.
Given an input string, word, return all possible permutations of the string.
Note: The order of permutations does not matter.
Constraints:
All characters in word are unique.
...