Q1.
Try solving the following Hidato puzzles. Puzzle 1: a 5 × 5 grid with 25 in the top-left corner, 1 in the top row third cell, 20 and 4 in the second row, 14 and 8 in the third row, 15 and 9 in the fourth row.
Answer
Here is the completed grid.
| 25 | 23 | 1 | 2 | 3 |
| 24 | 20 | 22 | 5 | 4 |
| 19 | 14 | 21 | 8 | 6 |
| 18 | 13 | 15 | 7 | 9 |
| 17 | 16 | 12 | 11 | 10 |
(The orange numbers are the ones printed in the book.)
How to get there:
- The grid has 25 cells and the numbers run from 1 to 25, so every cell is used exactly once.
- 1 is fixed in the top row and 4 in the last column, only three steps away. The run 1 → 2 → 3 → 4 therefore hugs the top-right corner.
- From 4 the chain must come back down: 5, 6, 7 fill the right-hand block around the given 8 and 9.
- 10, 11, 12 run along the bottom row, and 13 must sit next to the given 14.
- 15 is fixed, so 16 and 17 finish the bottom-left corner and 18, 19 climb the first column to reach 20.
- 21 and 22 fill the middle column, and 23, 24 lead into 25 in the corner.
Why the count matters: in a Hidato the path visits every cell, so the largest number is always equal to the number of cells. Counting the cells first tells you the highest number even before you start — and it is the quickest way to check a grid.
Note on the worked example on page 95: two cells of the printed Solution grid carry wrong numbers. The cell to the left of 26 should be 29 (it is printed as 39, but 39 already appears above it), and the cell to the right of 7 in the second-last row should be 6 (it is printed as 16, but 16 already appears). With those two corrections the path runs 1, 2, 3, … 40 without a break.