To choose your next safe cell in Minesweeper, read every revealed number as the exact count of mines among its horizontal, vertical, and diagonal neighbors, and reveal or flag only the covered cells that satisfy all of those counts at the same time. On the keyboard-accessible 9 by 9 beginner board in Minesweeper, ten cells hide mines and the other seventy-one are safe, so each number you uncover is a strict constraint rather than an estimate. A covered cell is safe when every revealed number that borders it has already accounted for all of its mines elsewhere, and it must be flagged whenever its share of mines cannot yet be placed on other covered neighbors. The fixed layout used by this version means the same mine pattern returns after every Restart, which lets you rehearse one route until the deduction chain feels automatic instead of guessing.

What a revealed number tells you about the next cell
A revealed cell shows a number from 1 to 8, or stays blank when zero neighbors are mines. That number is not a hint or a probability, it is the exact count of mines touching the cell in the eight compass directions: north, south, east, west, and the four diagonals. Corner cells touch only three neighbors because two sides are outside the board, edge cells touch five, and interior cells touch the full eight. The neighbor count is computed by enumerating offsets from −1 to +1 on both axes, skipping the cell itself, so a 3 near the corner of a 9 by 9 grid still means exactly three mines among the three available neighbors, which is the strongest constraint on the board.
| Cell position | Maximum neighbors | What the number means |
|---|---|---|
| Corner (4 corners) | 3 | Number from 0 to 3 is the full mine count among those three cells |
| Edge (non-corner border) | 5 | Number from 0 to 5 covers every neighboring cell along that side |
| Interior | 8 | Number from 0 to 8 is the mine count in all eight surrounding cells |
A revealed 0 opens the cell as a blank and automatically expands through every connected zero, plus the numbered cells that border those zeros. This expansion can clear a large region in a single reveal, which is why the first safe click often unlocks dozens of cells at once. After that flood fill settles, only the bordered numbered cells still hold active information, and they are the cells you will read to plan your next step.
Move around the board, read the number, decide
- Place the keyboard cursor on a covered cell with the arrow keys; the cursor always begins on a safe cell, so you can press Space or Enter right away to start.
- Press Space or Enter to reveal the selected cell. If it is safe, it shows a number from 0 to 8 or opens as blank with automatic zero expansion.
- Read the revealed number as the exact count of mines among its neighbors, using the position table above for edge and corner cases.
- Compare that count to the flags you have already placed in those neighbors, and to the covered neighbors that remain. If every mine for that number is already flagged on a different covered neighbor, the remaining covered neighbors are safe to reveal next.
- If the count is not yet satisfied by existing flags, press F on the selected covered cell to add a protective flag, then move on to another region until more numbers constrain the same cell.
- Repeat steps 2 through 5 until all seventy-one safe cells are revealed. If a mine is revealed instead, the round enters a loss state and the only recovery is Restart, which reloads the same fixed board.
Common number patterns that point to a safe next move
Two patterns unlock most beginner rounds. The first is a 1 with one covered neighbor: a revealed 1 whose only remaining covered neighbor must be a mine, so flag that cell and any other covered neighbor of that number becomes safe to reveal. The second is a 1-2-1 sandwich: three revealed numbers reading 1, 2, 1 across three adjacent cells, where the middle 2 forces both of its shared covered neighbors to be mines and the outer 1s already account for them, so every other covered neighbor is safe to reveal on the next move.
For a concrete worked example, suppose a revealed 1 sits with exactly two covered neighbors and no flags next to it. That 1 must touch one mine among those two cells, so on its own it does not single out a safe reveal. Now imagine the next revealed cell over also shows a 1, and it shares one covered neighbor with the first 1. The shared covered cell has to be the mine that satisfies both 1s at once, because each 1 still needs one mine and only one cell is shared. Mark that cell with F, and the other covered neighbor of each 1 becomes safe to reveal next with Space or Enter. This cross-checking pair is the basic deduction that turns a flood-fill board into a sequence of confident moves instead of guesses.
Flags as notes, not guarantees
Flags exist to record your suspicion and to block accidental reveals. Press F on a covered cell to add a flag, and press F again to remove it. Up to ten flags can be visible at once, which matches the ten mines on the beginner board, so a fully flagged board is consistent with a perfect run, although the game does not actually validate a flag until the round ends. Space and Enter are deliberately ignored on a flagged cell, so a stray keystroke cannot detonate a suspected mine until you remove the flag yourself. Revealed cells cannot be flagged at all, which keeps the visual board unambiguous: covered cells are either flagged or not, and revealed cells show their number or blank expansion. For a deeper look at how flagging behaves when a round ends, the guide on whether a flag guarantees a mine in Minesweeper covers the exact rule behind this protection.
Why a fixed beginner board improves your next-step choices
Most beginner Minesweeper guides assume a randomized field, but the keyboard-accessible version linked above deliberately uses one tested layout. The same ten mine positions remain in place after every Restart, so the deduction chain that opens the board is the same chain every time you reload. This makes the puzzle auditable: if you can clear the board once, the same steps will clear it again, and you can practice a known route until the patterns become second nature. It also removes the first-click anxiety that random boards create, because the cursor always starts on a safe cell and you can press Space or Enter immediately to begin the deduction.
The fixed layout matches the easy board convention described in the GNOME Mines rules and the KDE KMines handbook, both of which treat 9 by 9 with 10 mines as the standard beginner setup. Within that setup, the rule about exact neighbor counts and zero expansion is identical to those long-standing references, so practicing on this board is genuine Minesweeper practice rather than a simplified variant.
When to restart and refine the next-step plan
Triggering a mine freezes the board in a loss state, which is the game's terminal deadlock: no further move can recover that round. The only response is to select Restart, which reloads the identical 9 by 9 beginner layout in your browser without uploading anything. Because the mine positions do not shift, you can return to the exact board state, walk back through your earlier deductions, and check whether a number was read against the wrong neighbor set or whether a flag was placed one cell too early. The status line reports the count of safe cells revealed and the flags placed so far, which lets you compare runs side by side.
Scoring awards ten points for every safe cell you reveal, including the cells opened by zero expansion. Revealing all seventy-one safe cells therefore produces a clean 710 points, which is the value saved as the local best score in your browser's localStorage. There is no timer, no public leaderboard, and no penalty for placing the wrong flag, so the only measure of progress is how many safe cells you can clear before a mine ends the run. If a mine ends the round, restart the same board, replay the moves you were sure about, and use the next-step rule from this article on every new region until all seventy-one safe cells are revealed in a single pass.
If you're weighing options, How to Choose Your Next Step in Math Crossword covers this in detail.