README.rst
changeset 108 5f4985c2a4d4
parent 107 3f8c3da91e32
child 144 b19b85b476b3
equal deleted inserted replaced
107:3f8c3da91e32 108:5f4985c2a4d4
    22 Each move every tiles fill empty space in selected direction. If two tiles have same numbers ``N``
    22 Each move every tiles fill empty space in selected direction. If two tiles have same numbers ``N``
    23 them was merged into tile with number ``N+1``. Merges performed from head of direction.
    23 them was merged into tile with number ``N+1``. Merges performed from head of direction.
    24 
    24 
    25 Your goal is to reach tile with number ``11`` or better.
    25 Your goal is to reach tile with number ``11`` or better.
    26 
    26 
    27 AI discussion.
       
    28 ==============
       
    29 
       
    30  * http://math.stackexchange.com/questions/727076/probability-that-random-moves-in-the-game-2048-will-win
       
    31  * http://stackoverflow.com/questions/22342854/what-is-the-optimal-algorithm-for-the-game-2048
       
    32  * http://codegolf.stackexchange.com/questions/25226/2048-king-on-the-hill
       
    33 
       
    34 Alternatives.
    27 Alternatives.
    35 =============
    28 =============
    36 
    29 
    37  * http://ov3y.github.io/2048-AI/ - online JS AI.
    30  * http://ov3y.github.io/2048-AI/ - online JS AI.
    38  * http://sztupy.github.io/2048-Hard/ - online JS AI with difficulty level.
    31  * http://sztupy.github.io/2048-Hard/ - online JS AI with difficulty level.