No description
Find a file
2023-01-09 09:26:41 +01:00
gradle/wrapper java 2023-01-09 09:26:41 +01:00
src java 2023-01-09 09:26:41 +01:00
.gitignore more things 2022-12-05 16:20:18 +01:00
build.gradle java 2023-01-09 09:26:41 +01:00
gradlew java 2023-01-09 09:26:41 +01:00
gradlew.bat java 2023-01-09 09:26:41 +01:00
README.md java 2023-01-09 09:26:41 +01:00
settings.gradle java 2023-01-09 09:26:41 +01:00

Connect Four Template

A start of a project implementing a variant of the game "Connect Four".

Mission

  1. Extend the existing code such that the GreedyPlayer works.
  2. Implement a strong opponent using MinMax/Negamax with a fixed depth (like 10).
  3. Implement a perfect Player and optimize it for speed.

Resources