Minesweeper has a reputation as a luck game, and it's undeserved. Almost everything on a board is decidable by logic, and on Tapbreak Minesweeper, where every daily board is verified guess-free before it ships, everything is. What separates a fast, confident clear from a nervous one is pattern recognition: a handful of shapes that repeat on every board you will ever play. Learn them once and the board stops being a minefield and starts being a crossword.
Rule zero: what a number actually says
Every number counts the mines in its eight surrounding cells. That's all the information there is. Two immediate deductions follow, and they do most of the work on any board:
- If a number's value equals its count of unopened neighbors, every one of those neighbors is a mine. Flag them all.
- If a number's value equals its count of flagged neighbors, every other neighbor is safe. Open them all.
Beginners scan for cells to open. Strong players scan for numbers that have just become satisfied, because each satisfied number is a free burst of safe cells.
The 1-1 pattern: subset logic
Now the real engine. Suppose two 1s sit side by side along a wall of unopened cells, and every cell the first 1 touches is also touched by the second. The first 1 guarantees exactly one mine among its cells, and that same mine is all the second 1 needs. Any extra cell that only the second 1 touches must be safe.
That's subset reasoning: when the cells of number A are contained in the cells of number B, subtract. The cells B sees beyond A must hold exactly B−A mines. If that difference is zero they're all safe, and if it equals the number of leftover cells they're all mines. Nearly every named pattern is this one rule wearing different costumes.
The 1-2 family
A 1 and a 2 side by side against a clean wall of three unopened cells: the 1 touches the first two cells, the 2 touches all three. The 1 says "one mine in cells one and two." The 2 needs two mines among all three, so the third cell, the one the 1 can't see, is always a mine. Flag it without a second thought.
Extend it and you get the two most famous shapes in the game:
- 1-2-1: the mines sit over the two 1s, and the cell over the 2 is safe. Open it.
- 1-2-2-1: the mines sit over the two 2s, and the cells over both 1s are safe.
These fire constantly, and they're pure reflex once you've seen them a dozen times. One caution: the clean form assumes the numbers' only unopened neighbors are that wall. A stray unopened corner cell changes the arithmetic, which brings us to reduction.
Reduction: turning big numbers into small ones
A 3 next to a flagged mine is really a 2. A 4 touching two flags is really a 2. Before hunting patterns, mentally subtract every confirmed flag from its adjacent numbers. Suddenly a scary 2-4-2 wall reveals itself as a plain 1-2-1 in disguise. Most "hard" positions are easy positions plus bookkeeping.
The counting endgame
When the board runs low, switch from local to global: compare the total mines left against the unopened cells left. If they're equal, every remaining cell is a mine. If the remaining mines are all accounted for by one cluster, everything outside that cluster is safe. This global count is the deduction people forget, and it's exactly the move that cracks endgames which look like coin flips at first glance.
Speed: chording, and flagging less
Once a number is satisfied, opening its remaining neighbors one by one is wasted motion. Chord instead, clicking the satisfied number itself to pop all its unflagged neighbors at once. And flag only when a flag feeds a chord or pins down a deduction; decorating the board with flags you never use is pure overhead. Speed in Minesweeper isn't clicking faster. It's deciding faster.
Why you'll never need luck here
Here's the dirty secret of classic Minesweeper: patterns or not, some boards simply dead-end in a 50/50. We measured it. We generated 5,000 random boards at our own size and mine density (16×16, 40 mines) and ran each through our solver, which plays using exactly the logic above: satisfied numbers, subset reasoning, global counting. Only 2,690 of 5,000, about 54% — could be finished without a single guess. Play classic random Minesweeper and roughly every other board will, at some point, ask you to gamble.
So we throw those boards away. Every daily board on Tapbreak is drawn from the guess-free half: our solver must clear it by pure deduction, from the opening we give you, before it's allowed to ship. If you're ever stuck, it isn't the board. There is always a next step, and the in-game hint will point at one provable move rather than a suggestion.
The best way to burn these patterns in is volume: the Minesweeper archive has every past daily board, free to replay, no records at stake. Go find some 1-2-1s.