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

Sometimes program lose or hange due to bug in class Board

Open romank915 opened this issue 3 years ago • 0 comments

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

romank915 avatar Jun 23 '22 20:06 romank915