AI for the 2048 game
Find a file
2022-06-08 21:33:27 -04:00
.github/workflows Run benches in CI 2022-06-03 09:40:34 -04:00
benches Get rid of parameter to State 2022-06-03 16:02:53 -04:00
src Use proptest instead of quickcheck 2022-06-08 21:33:27 -04:00
.gitignore Add empty skeleton 2022-06-01 20:50:30 -04:00
Cargo.lock Use proptest instead of quickcheck 2022-06-08 21:33:27 -04:00
Cargo.toml Use proptest instead of quickcheck 2022-06-08 21:33:27 -04:00
README.md Add example output to README 2022-06-06 14:16:47 -04:00

2048

CI

A 2048 AI written in Rust.

+------+------+------+------+
|    2 |    2 |   32 |    2 |
+------+------+------+------+
|    8 |    4 |   64 | 2048 |
+------+------+------+------+
|    2 |   32 |    2 |      |
+------+------+------+------+
|      |      |      |      |
+------+------+------+------+
score: 2048
1004 moves in 5s (186 moves/s)