运用MaxMin算法实现的2048agent,仿照https://github.com/ovolve/2048-AI的js版本转写成的Python版本
搭建2048环境,构建RandomAgent。
运行:python 2048.py
实现Minmax算法,MinmaxAgent
完成websocket通信,先运行server/app.py
再运行client/app.py
G:.
├───client
│ ├───node_modules
│ │ ├───async-limiter
│ │ └───ws
│ │ └───lib
│ ├───utils
│ └───__pycache__
├───server
│ ├───static
│ ├───templates
│ └───__pycache__
└───__pycache__