Skip to content

Instantly share code, notes, and snippets.

View Monique2in's full-sized avatar

Monique Tuin Monique2in

View GitHub Profile
@Monique2in
Monique2in / play_sticks.py
Last active March 21, 2017 13:32
Game of Sticks (Human vs Computer)
#Implementing the Game of Sticks
#Inspired by [Part Two: Human vs AI from: http://nifty.stanford.edu/2014/laaksonen-vihavainen-game-of-sticks/handout.html]
#Goals: Implement my first full program in Python, learn about a dictionary data structure
import random
import time
ai_hats = {}
ai_picks = {}