diff options
Diffstat (limited to 'solutions/py/d07.py')
| -rw-r--r-- | solutions/py/d07.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/solutions/py/d07.py b/solutions/py/d07.py index c39e811..7ab2fe6 100644 --- a/solutions/py/d07.py +++ b/solutions/py/d07.py @@ -73,6 +73,8 @@ if __name__ == "__main__": import cProfile input = open("../input/07", "r").readlines() - pt1(input) cProfile.run("pt1(input)") cProfile.run("pt2(input)") + print(pt1(input)) + print(pt2(input)) + |
