Skip to content

Recursion & Backtracking

Recursion is a method of solving a problem where the solution depends on solutions to smaller instances of the same problem. Backtracking is an algorithmic technique that uses recursion to explore all possible solutions.

Topics