The 1-2-1 pattern in minesweeper: read the board instead of guessing
Three adjacent numbers reading 1-2-1 along the edge of the opened area settle the position of two mines with zero risk. Together with 1-2-2 and the mine counter, that is the whole toolkit.
There is one thing to understand about minesweeper, and everything else follows from it: a number says nothing about the square it sits on — it describes the eight squares around it.
The square rule — the one you already use
If a number has exactly as many covered neighbours as its value, all of them are mines. If it already has as many flags as its value, every remaining covered neighbour is safe and can be opened with a chord.
That clears most of an easy board and a good part of a medium one. Beyond it lies the place where most players start guessing — and that is exactly where patterns take over.
The 1-2-1 pattern
Picture the edge of the opened area with three adjacent numbers reading 1, 2, 1. Below them, on the covered side, lie three squares.
The result is forced: the mines sit under the outer ones, and the square under the two is safe.
Why? The two needs two mines among three squares. If a mine sat under the two, one of the ones would have two mines in range — but it reports only one. Contradiction. Exactly one arrangement satisfies all three numbers.
This is not a heuristic or a "usually". It is a proof, which is why it is safe to rely on in a timed game.
The 1-2-2 pattern
Same mechanism, different shape: in a 1-2-2 sequence the mines sit under the two twos, and the square under the one is safe.
Both patterns are really the same idea: you stop looking at a single number and start looking at the set of squares two adjacent numbers talk about at once. When one number's set is contained in another's, the difference between them is decided.
The mine counter — the third and final rule
The remaining mine count above the board is a tool, not decoration. Endgames often look like this: three covered squares left and one mine, while a number reports "one mine among two of those squares". The third square is then safe, even though no single number says so on its own.
Why you never have to guess here
Classic minesweeper produces endgames where two squares hold one mine and nothing decides which — you flip a coin. With one daily board shared by the whole world, that would mean half the players losing at random and the leaderboard measuring luck.
So the generator only releases a board once its own solver has walked it using those three rules: the square rule, the subset rule (1-2-1 and 1-2-2 written formally) and the mine counter. If you are stuck, the answer is on the board. It has to be found, not gambled on.
That guarantee has a deliberately harsh consequence: one mine ends the game. If the board is provably fair, stepping on a mine is a mistake, not bad luck.
Three habits that cut your time
- Flag only where a flag unlocks something. A flag by itself does not bring you closer to winning — the chord it enables does.
- Use chording. Clicking an opened number that already has its flags reveals the rest in one move. On a 16×20 field that is hundreds of clicks saved.
- Work the frontier, not the interior. All the information lives on the border of the opened area. The middle has nothing left to say.
The rest is practice — and the best place to check it is today's board, because the whole world is playing that exact one under the same rules.