Game-Play-Bot-Python

  • Missing some files, please email me at bhn2600@gmail.com if interested in running code.
  • Plays on a generalized tic-tac-toe board.
  • minimax_player - Calculates the best move from the given board using the minimax algorithm.
  • alphabeta_player - Calculates the best move from the given board using the minimax algorithm with alpha-beta pruning.
  • evaluation_player - Calculates the best move after 1-ply look-ahead with a simple evaluation function.