Skip to content

Instantly share code, notes, and snippets.

@jacobbridges
Last active August 26, 2020 14:44
Show Gist options
  • Save jacobbridges/07d76dad5ccdb9fe79a26c5237826dc8 to your computer and use it in GitHub Desktop.
Save jacobbridges/07d76dad5ccdb9fe79a26c5237826dc8 to your computer and use it in GitHub Desktop.
Tic Tac Toe
board = [
['x', null, 'x'],
['o', 'o', null],
['o', 'o', 'o']
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment