interactive-coding-challenges/graphs_trees/utils/results.py

16 lines
406 B
Python
Raw Normal View History

class Results(object):
def __init__(self):
self.results = []
def add_result(self, result):
# TODO: Clean this up
# Simplifies challenge coding and unit testing
# but makes this function look less appealing
self.results.append(int(str(result)))
def clear_results(self):
self.results = []
def __str__(self):
return str(self.results)