diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-10 10:25:09 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-10 10:25:09 +0100 |
| commit | e90da7fb85326094a01df6f4a3391462698f00bc (patch) | |
| tree | 779c15a87bcbb21e2a7ee18f0e72bf6f3d7bca84 /solutions/py/main.py | |
| parent | 6048cd264bd931d8e70e9cb5dacaf4711903e60d (diff) | |
| download | aoc-e90da7fb85326094a01df6f4a3391462698f00bc.tar.gz | |
Refactor and timings day 10
Diffstat (limited to 'solutions/py/main.py')
| -rw-r--r-- | solutions/py/main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/solutions/py/main.py b/solutions/py/main.py index 8887664..f3c5b78 100644 --- a/solutions/py/main.py +++ b/solutions/py/main.py @@ -9,8 +9,9 @@ import d06 import d07 import d08 import d09 +import d10 -mods = [d01, d02, d03, d04, d05, d06, d07, d08, d09] +mods = [d01, d02, d03, d04, d05, d06, d07, d08, d09, d10] timings = [[0 for _ in range(2)] for _ in range(len(mods))] clock_type = time.CLOCK_MONOTONIC |
