mirror of
https://github.com/Noratrieb/minmax.git
synced 2026-01-14 07:15:06 +01:00
| .. | ||
| gradle/wrapper | ||
| src | ||
| build.gradle | ||
| gradlew | ||
| gradlew.bat | ||
| README.md | ||
| settings.gradle | ||
Connect Four Template
A start of a project implementing a variant of the game "Connect Four".
Mission
- Extend the existing code such that the GreedyPlayer works.
- Implement a strong opponent using MinMax/Negamax with a fixed depth (like 10).
- Implement a perfect Player and optimize it for speed.