1. Intro
‘Tower of Hanoi’ is a well-known puzzle presented in many CS textbooks. These the rules:
– The are 3 poles A, B, and C.
– n disks are on pole A with the conical shape (the largest disk is at the bottom, then the smaller ones upper, and the smallest on top).
– You job is to move the entire n disks from pole A to pole C (the same conical shape as the final result) using 3 poles while obeying the rules:
+ only one disk is moved at a time + no disk is allowed to be placed on top of a smaller one
2. Tips to solve the game
This simple and easy-to-follow guide will guarantee you the least moves (and time if you practice) to achieve the result:
[ Don’t look at this if you prefer trying the game first ] more »
