Tower of Hanoi — Recursive Demo

Planned moves0 Completed moves0 StatusReady
A
B
C

Recursion: the solveHanoi() function calls itself to break the puzzle into smaller subproblems.

Iteration: rendering the disks and animating the move list both use loops to process the current state step by step.