""" CSE 163 Suh Young Choi Lesson 2: count_votes This program provides scaffolding for the count_votes() coding problem, which will be covered in class. """ # Define count_votes up here! def main(): print(count_votes([1, 0, 1, 1, 2, 0])) if __name__ == '__main__': main()