🔢 Merge Numbers

Slide and merge matching numbers to reach 2048.

🧩

Slide in one direction and every tile moves; matching numbers merge into one. When nothing can move, it's over!

Score equals the merged value · Swipe or use arrow keys

The game

Swipe to slide every tile in one direction. Equal numbers merge and double. A new tile appears after each move. Keep going until the board locks up.

If you know 2048, this is that. It is a small, brutal exercise in planning under forced randomness — you control the direction, never the spawn, so every move has to survive an outcome you did not choose.

The one rule that matters

Pick a corner and never leave it. Keep your largest tile locked in one corner and only ever swipe along the two edges that touch it.

The reason is structural. A merge only happens between adjacent equal tiles, so your board needs to stay sorted — a descending staircase from your corner outward. The moment your biggest tile wanders into the middle, it splits the board into regions that can no longer feed each other, and the game is effectively over even though it still looks playable.

  • Choose two directions and mostly use those. If your corner is bottom-left, live on down and left.
  • Never swipe the fourth direction. One up-swipe with a bottom-anchored board can lift the big tile out of the corner and cost you the run.
  • Keep the anchor row full. A full bottom row cannot be disturbed by a swipe along it, which is what protects the corner.
  • Build the staircase. Largest in the corner, descending along the row. Merges then cascade instead of happening one at a time.

Why it feels like it cheats

It does not, but the feeling is well founded. Spawns are random, so a 4 landing in the wrong cell at the wrong moment genuinely can end an otherwise healthy board. What separates good runs from lucky ones is how many bad spawns your position can absorb — a sorted board with a full anchor row survives them; a scattered board does not.

This is the actual skill the game trains: not calculating deeply, but maintaining a structure that keeps your options open. Which is a reasonable description of planning in general.

Reading your result

  • Stuck around 256 — usually corner discipline. Watch for accidental swipes in the forbidden direction.
  • Stuck around 512 — the staircase is breaking down mid-game. Merge small tiles more aggressively before they clutter the board.
  • Reaching 1024+ — you have the structure. From here it is mostly patience and not getting careless when the board is nearly full.

Frequently asked

Q. Is 2048 always reachable with perfect play?
A. No — random spawns mean no strategy guarantees it. Good play makes it likely, not certain.

Q. Should I plan several moves ahead?
A. Less than you would think. Because spawns are random, deep planning has poor returns. Maintaining the invariant — sorted board, anchored corner — beats calculating.

Q. Does this train anything?
A. It trains you at this. As with most puzzle games, the general "planning ability" claims are not well supported — see does brain training actually work?

For a planning task with no randomness at all, try the tower puzzle.

Ad

한국어로 보기 →