diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-08 22:10:51 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-08 22:10:51 +0100 |
| commit | 2e74b1b0caeb0e0490c563635af6bef28a990ec6 (patch) | |
| tree | ebd0fd46184e66db70d2e95fc3cf6e47e2fafe15 /solutions/py/d04.py | |
| parent | d8f929604f18cacc40eec80f3bbd4386757a4902 (diff) | |
| download | aoc-2e74b1b0caeb0e0490c563635af6bef28a990ec6.tar.gz | |
Add cProfiler
Diffstat (limited to 'solutions/py/d04.py')
| -rw-r--r-- | solutions/py/d04.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/solutions/py/d04.py b/solutions/py/d04.py index 6b2af1d..1d5840a 100644 --- a/solutions/py/d04.py +++ b/solutions/py/d04.py @@ -44,5 +44,6 @@ def pt2(input): if __name__ == "__main__": import cProfile + cProfile.run("pt1([])") cProfile.run("pt2([])") |
