Forced Queen
EssentialWhen a region, row, or column has exactly one legal cell, a queen must go there.
- How to spot it
- Look at each region, row, and column. Count the cells that are still empty and do not conflict with an existing queen. If a region has only one empty cell left — or if a row or column has only one cell where a queen would be legal — you have found a forced move.
- What to do
- Place a queen in that single legal cell. Every other cell in its row, column, and region now becomes invalid, along with its four diagonal neighbors. Mark all of them.
- Why it works
- Every region, every row, and every column needs exactly one queen. If only one cell is available, the queen can only go there — no other position is possible.
- When it applies
- Every puzzle. This is the first deduction to look for after placing any queen or marking any cell.