A simple, text-based Tic-Tac-Toe game built in Python. Play against a computer opponent and see if you can win, lose, or draw. Play against an AI opponent. Interactive command-line interface. Handles ...
Implement init_board() to return an empty 3-by-3 board, i.e. a list of lists filled with dots. The inner lists are rows. [OPTIONAL] Allow players to quit the game anytime by typing quit. When the ...