Exercise: Recursive Recursive Backtracker
Test yourself by implementing the Recursive Backtracker algorithm using an implicit stack with actual recursion.
We'll cover the following...
Problem statement
There's nothing wrong with using an explicit stack, but let's see how much more concisely the ...