Command line tic-tac-toe in ruby with an AI using minimax Algorithm.
Try it!
$> git clone [email protected]:koolkt/tictactoe_ruby.git; cd tictactoe_ruby; ruby bin/tictactoe.rb
Todo:
- simplify implementation with negamax
- optimize with alpha beta prunning
- write some actual tests
- clean minimax implementation