Permutations - Words - 2
easy
1. You are given a word (may have one character repeat more than once). 2. You are required to generate and print all arrangements of these characters. Note -> Use the code snippet and follow the algorithm discussed in question video. The judge can't force you but the intention is to teach a concept. Play in spirit of the question.
Constraints
0 < str.length() <= 4
Format
Input
Input is managed for you
Output
Check the sample ouput and question video.
Example
Sample Input
aabb
Sample Output
aabb
abab
abba
baab
baba
bbaa
Question Video