Описание
On the screen will appear a table n * m containing numbers and empty cells. The player's task is to match the number tiles according to the rules of each mode to create a new number in the last box. Every 5 seconds, a new number will appear with a value less than or equal to the value of the second smallest number on the board.
Winning conditions: Match the box with the largest number
Loss condition: Timeout 60 seconds or table is filled
How to play: Tap 2 tiles to combine to form a new number in the last tile
There are 2 modes:
Fibonacci: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...
Players will have to match the numbers according to the fibonacci sequence.
For example, 0 combines with 1 -> 1, 1 combines with 1 -> 1, 1 combines with 2 -> 3, 2 combines with 3 -> 5...
Prime numbers: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59,
Players will have to combine numbers according to the sequence of primes.
For example, 2 combines with 3 -> 5, 3 combines with 5 -> 7, 5 combines with 7 -> 11, 7 combines with 11 -> 13 ...