Tick-Tack-Toe written in Scala by using minimax
sbt run
Random seed: 76
Circle player: human
Cross player : default ("minimax")
sbt "runMain io.github.nwtgck.ticktacktoe.Main --random-seed=76 --circle=human"
NOTE: The "minimax" machine finds all possible moves. So you never win this game unless it has a bug.
Usage: Tick Tack Toe [options]
--random-seed <value> random seed (default: 10)
--circle <value> player of circle ("human" or "minimax")
--cross <value> player of cross ("human" or "minimax")