Skip to content

Instantly share code, notes, and snippets.

View andychu's full-sized avatar

andychu

View GitHub Profile
@andychu
andychu / tictactoe.py
Created February 5, 2018 17:46
Tic Tac Toe
#!/usr/bin/python
from __future__ import print_function
"""
tictactoe.py
"""
import sys
def DrawBoard(board, f=sys.stdout):