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