mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
13 lines
257 B
Python
13 lines
257 B
Python
|
class Results(object):
|
||
|
|
||
|
def __init__(self):
|
||
|
self.results = []
|
||
|
|
||
|
def add_result(self, result):
|
||
|
self.results.append(result)
|
||
|
|
||
|
def clear_results(self):
|
||
|
self.results = []
|
||
|
|
||
|
def __str__(self):
|
||
|
return str(self.results)
|