Tower of Hanoi
Tower of Hanoi is a classic practice problem. State the rule, trace a tiny input, then code. Fibonacci: next = sum of last two. Second largest: watch duplicates. Hanoi: move n-1, biggest, n-1. Distance: sqrt((x2-x1)**2 + (y2-y1)**2).
For Tower of Hanoi — say the output for one small n before you write the loop. That is the exam.
Tower of Hanoi — output — A → B, A → C, B → C. Two disks, three moves.
Exam tip
Rule + one dry-run + then code.