Using a pen and paper(and over the phone) write a function that shows all permutations of a given string. Given the string 'abc' it should return 'abc', 'acb', 'bac', 'bca'... etc.
Sigiloso
This isn't that big of a deal but this guy's garbage at helping you, he kept trying to shove in recursion where the solution I had was already doing the same thing. try to ignore his help. For the answer, just google 'permutation' + (some language) and it will show you what you need.