But it doesn't have to end here! Sign up for the 7-day coding interview crash course and you'll get a free Interview Cake problem every week.
You're in!
Write a recursive function for generating all permutations of an input string. Return them as a set.
Don't worry about time or space complexity—if we wanted efficiency we'd write an iterative version.
To start, assume every character in the input string is unique.
Your function can have loops—it just needs to also be recursive.
Make sure you have a base case! Otherwise your function may never terminate!
Log in or sign up with one click to get immediate access to free mock interview questions
We'll never post on your wall or message your friends.
Log in or sign up with one click to get immediate access to free mock interview questions
We'll never post on your wall or message your friends.
How does the problem change if the string can have duplicate characters?
What if we wanted to bring down the time and/or space costs?
Log in or sign up with one click to get immediate access to free mock interview questions
We'll never post on your wall or message your friends.
Reset editor
Powered by qualified.io