This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 = {} |