Hi,
I want to find possible combination of "TEST", which is char array of five indexes.There should be no repetition of chars.
For example
TEST should be out one time, but not two time because 0th index and 3th index are same.
My code is showing it two time.
The problem is recursive. All permutations of TEST are (T + all permutations of EST) + (E + all permutations of TST) + (S + all permutations of TET). The challenge is to find all unique characters in a string. Sorting it would help..