#!/usr/bin/env python # -*- coding: utf-8 -*- # EXTRA CREDIT: # # Create a program that will play the Greed Game. # Rules for the game are in GREED_RULES.TXT. # # You already have a DiceSet class and score function you can use. # Write a player class and a Game class to complete the project. This # is a free form assignment, so approach it however you desire. from runner.koan import * class AboutExtraCredit(Koan): # Write tests here. If you need extra test classes add them to the # test suite in runner/path_to_enlightenment.py def test_extra_credit_task(self): pass