A cli implementation of the game of Nim for a university course.
The moves are generated using the minmax algorithm with alpha-beta pruning.
Build and run the project with:
$ gradle -q build && java -jar app/build/nim.jar
A cli implementation of the game of Nim that uses the minmax algorithm and alpha-beta pruning
JavaGPL-3.0