Files
grokking_algorithms/05_hash_tables/python/02_check_voter.py
Aditya Bhargava 8b9893cdc0 code for chapter 5
2016-03-02 14:32:36 -08:00

12 lines
201 B
Python

voted = {}
def check_voter(name):
if voted.get(name):
print "kick them out!"
else:
voted[name] = True
print "let them vote!"
check_voter("tom")
check_voter("mike")
check_voter("mike")