2048 is a sliding tile puzzle. The goal: reach the 2048 tile by merging numbers.
Rules:- Use arrow keys or swipe to slide all tiles
- When two tiles with the same number collide, they merge into one
- After each move, a new tile (2 or 4) appears randomly
- The game ends when no more moves are possible
# Example merge:
[ 2 ][ 2 ][ 4 ][ . ] --slide left--> [ 4 ][ 4 ][ . ][ . ]
[ 4 ][ 4 ][ . ][ . ] --slide left--> [ 8 ][ . ][ . ][ . ]
Tip: Keep your largest tile in a corner and build around it!