Added results.py, which helps with testing graph and tree problems.

This commit is contained in:
Donne Martin 2015-08-04 19:46:22 -04:00
parent acc72a8b8a
commit 1e5ff4f465

View File

@ -0,0 +1,13 @@
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)