The board does not collapse after a match in Number Match 10 — removed cells stay empty and the original two-by-three grid remains fixed in place, with no gravity, sliding, falling, or reflow applied to the surviving numbers.
This single rule is the most important thing to know before you start playing, because it means every adjacency you see on the screen stays exactly where it is for the entire game. A successful pair simply vanishes; the numbers around it do not slide into the empty space, do not fall downward, and do not form new edges with cells they did not previously touch. If you have played a match-three, a tile-cascade puzzle, or a column-drop arcade game, the instinct to look for a chain reaction is real, but Number Match 10 deliberately turns that instinct off. The fixed grid lets you reason about every possible move in advance: after a removal, the only adjacencies that matter are the four orthogonal neighbors that were already there on the starting board. That predictability is also why a route choice can strand a perfectly good matching pair across a diagonal corner, forcing the game to detect a deadlock and ask you to restart. The rest of this page walks through exactly what the no-collapse rule does and does not change, how to read the board, how to score the full 300 points, and where the trap doors are.

What "no collapse" actually means in Number Match 10
Number Match 10 ships with a fixed two-by-three grid of numbers — top row 1, 9, 1 and bottom row 9, 2, 8 — and the layout never changes for the entire run. Behind the scenes the game tracks a simple Set of removed indices over the array [1, 9, 1, 9, 2, 8] and recomputes the legal-pair list every time you make a selection. There is no physics engine, no gravity step, and no "refill new numbers" mechanism, so the moment two cells disappear, the remaining four cells keep the exact coordinates they had at the start of the run. That is what "the board does not collapse" means in practice: empty cells stay empty, surviving numbers do not fall into the gap, and you never get a fresh number dropped into a hole to give you a second chance.
The product contract spells this out directly: "Removed squares cannot be selected, and the board does not collapse or apply gravity. Those simple rules make every remaining adjacency visible." Visibility is the design goal, not laziness — by refusing to slide, fall, or refill, the game guarantees that the only adjacency between two live cells is one that was already declared on the starting board. If a chain reaction feels natural to you, that is a sign the puzzle wants you to resist it. Every move in Number Match 10 is decided by the numbers that were there before you removed anything.
| Behavior after a match | Number Match 10 | Typical cascade or drop game |
|---|---|---|
| Removed cells | Stay empty, coordinates fixed | Vacated, may be refilled |
| Surviving numbers | Do not slide or fall | Often slide down or shift sideways |
| New adjacencies after a match | None — only original neighbors remain | New edges may appear as tiles settle |
| Refill mechanic | None — board never grows | Often spawns fresh tiles |
| Deadlock response | Browser detects it and prompts Restart | Usually refills or reshuffles automatically |
That table summarizes why the answer to "does the board collapse after a match" is a flat no. The empty cells you see at the end of the run are the same empty cells you will see at any point in the middle, and they sit in the same two-by-three positions the whole time. The only thing that changes between moves is which numbers are still alive.
How to play Number Match 10 step by step
The whole interaction runs on the keyboard, so the procedure is short and predictable. Every selection you make is either accepted as a valid pair and disappears, or refused — in which case the second square simply becomes your new starting selection and nothing disappears.
- Use the arrow keys to move the visible cursor onto the first number you want to remove.
- Press Space or Enter to select that first number; it stays highlighted as the current anchor.
- Arrow to an orthogonally adjacent second number — one that shares a horizontal or vertical edge with the first.
- Press Space or Enter again to confirm the second number. The pair vanishes only if the two values add up to exactly 10.
- If the second choice is not orthogonally adjacent, or if the values do not sum to 10, nothing disappears; the second square becomes your new first selection for the next attempt.
- Selecting the same square twice cancels that selection, so a misclick is recoverable without losing any cells.
- Repeat until all six cells are gone, or until the browser detects a deadlock and asks you to Restart.
The full game score is just the count of successful pairs multiplied by 100, and the score does not depend on speed, streak, or any timer — there is no clock in this puzzle. Three valid pairs across the six cells is the only path to the maximum 300 points.
Why orthogonal adjacency — not diagonal — decides every pair
"Orthogonal adjacency" is the rule that turns the grid from a free-for-all into a real logic puzzle. Two cells count as adjacent only when they share a horizontal or vertical edge: a left neighbor, a right neighbor, an upper neighbor, or a lower neighbor. Diagonal corners — for example the top-middle 9 and the bottom-left 9 — share a point but no edge, so they are explicitly not adjacent, even though the two values add up to 18. The same restriction applies to any pair sitting across a cleared cell; once a number disappears, the gap does not become a bridge, because the original adjacency was the only thing that ever counted.
This is also why the no-collapse rule and the adjacency rule reinforce each other. If the board ever slid numbers into empty cells, you could end up with brand-new orthogonal pairs that did not exist on the starting layout, and the puzzle would reduce to "keep clearing until something adjacent sums to 10." By keeping every cell in its starting slot, Number Match 10 forces you to plan route order instead of reacting to whatever the cascade happens to leave behind.
The 300-point route and the deadlock trap
Number Match 10 ships with a verified winning route on the standard board. Starting from cells 0 through 5 (left to right, top row then bottom row, using zero-based indexing), the route is:
| Step | Pair removed | Cell indices | Sum | Score after step |
|---|---|---|---|---|
| 1 | Vertical 1 + 9 in the left column | 0 and 3 | 10 | 100 |
| 2 | Horizontal 9 + 1 across the top-right | 1 and 2 | 10 | 200 |
| 3 | Bottom 2 + 8 in the right two cells | 4 and 5 | 10 | 300 |
Each pair is worth 100 points: 100 + 100 + 100 = 300, so the maximum score equals 3 × 100. There is no bonus for speed, no streak multiplier, and no hidden points for completing the board — the score formula is purely a count of successful removals times 100.
Now consider a tempting alternate route that also looks legal on paper. If you first remove the top-left 1 with the top-middle 9 (cells 0 and 1), and then remove the bottom-middle 2 with the bottom-right 8 (cells 4 and 5), the only survivors are the top-right 1 at cell 2 and the bottom-left 9 at cell 3. They still sum to 10, but they now touch only diagonally across the corner of the board. With no collapse and no sliding, there is no legal adjacent pair left, so the browser detects that the remaining numbers exist but the legal-pair list is empty. That is the deadlock state, and the game asks you to Restart immediately. If you have ever wondered why a "legal match" can still lose you the run, the answer is exactly this: the no-collapse rule makes your first move permanently reshape which pairs are possible.
For a deeper look at that trap, see how a legal match can cause a deadlock in Number Match 10.
How restart, boss key, and score rules reinforce the fixed-grid design
Every piece of the surrounding interface exists to support the same fixed-grid promise. Restart restores all six numbers to the board, clears the current selection, returns the cursor to the first square, and resets the score to zero — so a deadlock or a wrong turn never costs you anything permanent. The score itself is a simple count: each successful adjacent pair worth 100 points, with 300 as the proven ceiling for the standard layout. A best score may be kept only in localStorage, so it lives on your device and is not transmitted anywhere.
The cursor is a real keyboard cursor, not a mouse hover state: arrow keys move it, Space or Enter commits each selection, selecting the same square twice cancels that selection, and removed cells are simply skipped as the cursor moves over them. Double-press Escape swaps the screen for a shared simulated spreadsheet boss view, and a second double-press returns you to the puzzle. There is no canvas, no random generator, no timer, no audio, and no account, so the only moving parts in the entire experience are the six numbers, the cursor, and your three selections.
That minimalism is what makes the no-collapse answer so useful. Once you internalize that the two-by-three grid stays exactly where it is from the first arrow press to the final Restart prompt, you can stop scanning for chain reactions and start planning route order — and route order is the entire point of Number Match 10.