2048 is game where the player has to move tiles of numbers in order to create a 2048 tile. The board is a 4x4 square with 16 places.
Supossing that for every move, a number 2 tile is added on the board, find the maximum number a player can create.
Hint: If you don't know the game rules, take a look here: http://en.wikipedia.org/wiki/2048 %28video game%29
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The answer is 65536. There are 16 tiles. The game ends when all tiles are full with the greatest possible values. The player will reach a point where all the tiles are full with different numbers in ascending order. So, our answer is the value of the 16th tile which is:
2 1 6 = 6 5 5 3 6