2048-ai icon indicating copy to clipboard operation
2048-ai copied to clipboard

An simple AI for the 2048 game.

Results 2 2048-ai issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/24641689/47571984-722c4780-d96c-11e8-8504-2d36f8ced429.png) // 这种情况会返回None结果,其实也差不多快要结束了。 AI.go ```go func (a *AI) Search() grid.Direction { var ( bestDire = grid.NONE bestScore float64 ) // depth value depending on grid's max value. dept := a.deptSelect()...

理论只需要遍历每个空点的上下左右四种情况就可以了,这样的dept不需要设置了