Tic-tac-toe, but you can place bigger pieces over smaller pieces
No.
The computational requirements explode after 5 pieces.
The 6 pieces of the video are unsolved.
Through exhaustive searching with an efficient min-max algorithm, all game
states for 3, 4, 5 and 6 piece per player games have been checked.
src/game/main.rs -> target/release/game
Harder than it looks!
src/solver/main.rs -> target/release/solver
You can’t win. It is hard to avoid losing.
src/lookup-generator/main.rs -> target/release/lookup-generator --help