예제 #1
0
 private void makeMove(Mark[][] board, Move move) {
     board[move.getRow()][move.getCol()] = move.getMark();
 }