Recurrence Relations · Recursive Algorithms
Lesson 1
Problem. It often happens that a computational problem can be reduced to itself. In such cases, the problem can naturally be solved using a recursive algorithm. A classic example is the “Tower of Hanoi” puzzle. In this puzzle, there are three rods, and \(n\) disks of increasing size are stacked on the first rod.

5 points