tictactoe2
This is an old revision of the document!
Tic-Tac-Toe: 2D array
This will be a text based implementation but would be easy to port into a graphic based version.
- Complete the constructor so the board can be any size, not just 3 by 3. Read the comments for details
- complete the
changePlayer
method. - complete the
mark
method, that puts the replaces the grid location with the letter stored inplayer
, and then calls thechangePlayer
method (Don't reduplicate code inside themark
method). - complete the
getPlayer
method - make a method called
movesRemaining
that returns the number of spaces ingrid
- write a main method that makes an instance of the TicTacToe2 class and the calls the
print
method:
public static void main(String[] args)
Next we can work on the game, and the testing the winner()
method of the TicTacToe2
class.
tictactoe2.1604433789.txt.gz · Last modified: 2020/11/03 15:03 by frchris