Skip to content

Instantly share code, notes, and snippets.

View rabellamy's full-sized avatar

Robert Anthony Bellamy rabellamy

View GitHub Profile
@sorensen
sorensen / tic-tac-toe.py
Created December 5, 2018 22:19
hackerrank tic-tac-toe solution
#!/bin/python
import random
# ------------------------------------------------------------------------------
# Constants
# ------------------------------------------------------------------------------
# Moves
_ = 0
X = 1