The simplest and most fundamental technique. If a cell can only contain one possible number, that is the answer.
- Look at every empty cell and check which numbers 1–9 are already present in its row, column, and 3×3 box.
- If eight different numbers are already ruled out, the remaining digit is the only possible candidate.
- Always scan the board after every placement — one solved cell often unlocks several others.
- This technique alone is sufficient to solve Easy-level puzzles.
// EXAMPLE
Imagine a cell in row 3, column 5. Row 3 contains 1, 4, 6, 9; column 5 contains 2, 5, 7; and the box contains 3, 8. Only 2 is missing, so that cell must be 2.