Name | Modified | Size | Downloads / Week |
---|---|---|---|
v0.4.2 | 2017-01-31 | ||
v0.4.1 | 2016-08-07 | ||
v0.4 | 2014-09-24 | ||
v0.3 | 2014-09-20 | ||
v0.2 | 2014-09-17 | ||
v0.1 | 2014-09-11 | ||
README.rst | 2017-01-31 | 798 Bytes | |
Totals: 7 Items | 798 Bytes | 0 |
2048 game JS AI.
Game rules.
4x4 board tiles filled by nambers or empty.
During each move one of free tiles was filled by value 1 or 2 (2 with probability 10%).
You can move tiles in one of four possible direction: left/right/up/dowm.
Each move every tiles fill empty space in selected direction. If two tiles have same numbers N them was merged into tile with number N+1. Merges performed from head of direction.
Your goal is to reach tile with number 11 or better.
Alternatives.
- http://ov3y.github.io/2048-AI/
- online JS AI.
- http://sztupy.github.io/2048-Hard/
- online JS AI with difficulty levels.