How to solve this 8×8 logic puzzle
This 8×8 board rates as severe (difficulty score 1270). Solving it from scratch takes 32 logical steps, using 7 techniques: Single cell, Row/column exclusion, Adjacency clear, Region confinement, Line confinement, Shape squeeze, Forced chain. Every step below is forced — nothing here is a guess.
- First, every open cell left in this region sits in column 7, so its marker has to land there — clearing every other open cell in the column.
- Next, every remaining candidate in this region touches row 3, column 6 and row 3, column 8 and row 4, column 6 and row 4, column 8 — so whichever candidate ends up marked will clear them, and they can be ruled out now regardless of which one wins.
- Then, every remaining candidate in this region touches row 7, column 5 — so whichever candidate ends up marked will clear it, and it can be ruled out now regardless of which one wins.
- After that, marking row 1, column 1 forces a chain of moves that breaks another row, column, or region, so it can't be the marker there.
- Now, marking row 1, column 4 forces a chain of moves that breaks another row, column, or region, so it can't be the marker there.
- From there, marking row 1, column 8 forces a chain of moves that breaks another row, column, or region, so it can't be the marker there.
- Following that, marking row 2, column 1 forces a chain of moves that breaks another row, column, or region, so it can't be the marker there.
- First, marking row 1, column 5 forces a chain of moves that breaks another row, column, or region, so it can't be the marker there.
- Next, marking row 2, column 2 immediately breaks another row, column, or region, so it can't be the marker there.
- Then, marking row 2, column 3 forces a chain of moves that breaks another row, column, or region, so it can't be the marker there.
- After that, marking row 1, column 6 forces a chain of moves that breaks another row, column, or region, so it can't be the marker there.
- Now, place a marker at row 2, column 8. Region has exactly one open cell left. Placing here clears the rest of row 2, column 8, and its region. Placing here also clears its 1 touching neighbour.
- From there, place a marker at row 4, column 7. Region has exactly one open cell left. Placing here clears the rest of row 4, column 7, and its region. Placing here also clears its 1 touching neighbour.
- Following that, every open cell in row 1 belongs to the same region, so that region's marker has to be somewhere in this row — clearing every other open cell in the region.
- First, every remaining candidate in this region touches row 6, column 5 — so whichever candidate ends up marked will clear it, and it can be ruled out now regardless of which one wins.
- Next, place a marker at row 7, column 6. Region has exactly one open cell left. Placing here clears the rest of row 7, column 6, and its region. Placing here also clears its 1 touching neighbour.
- Then, place a marker at row 8, column 4. Region has exactly one open cell left. Placing here clears the rest of row 8, column 4, and its region.
- After that, place a marker at row 5, column 5. Region has exactly one open cell left. Placing here clears the rest of row 5, column 5, and its region.
- Now, marking row 3, column 2 immediately breaks another row, column, or region, so it can't be the marker there.
- From there, place a marker at row 3, column 1. Row 3 has exactly one open cell left. Placing here clears the rest of row 3, column 1, and its region.
- Following that, place a marker at row 6, column 3. Region has exactly one open cell left. Placing here clears the rest of row 6, column 3, and its region.
- Finally, place a marker at row 1, column 2. Region has exactly one open cell left.
The key move here was Forced chain — once you can spot that, this board falls quickly. ∎