MiniMax-TicTacToe-Java icon indicating copy to clipboard operation
MiniMax-TicTacToe-Java copied to clipboard

MiniMax algorithm applied to Tic Tac Toe.

Results 1 MiniMax-TicTacToe-Java issues
Sort by recently updated
recently updated
newest added

Here is a fix: public void setMarkAt(int row, int column, Mark newMark) { board[row][column] = newMark; if (newMark == BLANK) { availableMoves++; } else { availableMoves--; } }