diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-16 20:49:09 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-16 20:50:09 +0100 |
| commit | 58b64b16fcc0004eb8661d45ff3fbeef285d668a (patch) | |
| tree | 463796e79243b8dc9e49b9e03374f7bce244d9f7 /solutions/py/main.py | |
| parent | b16f71eefe243089c69c9b9af956c66761fee170 (diff) | |
| download | aoc-58b64b16fcc0004eb8661d45ff3fbeef285d668a.tar.gz | |
Day 16 call from main
Runtime is ~12 seconds per part
Diffstat (limited to 'solutions/py/main.py')
| -rw-r--r-- | solutions/py/main.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/solutions/py/main.py b/solutions/py/main.py index aa7a4e2..730c8ac 100644 --- a/solutions/py/main.py +++ b/solutions/py/main.py @@ -15,8 +15,10 @@ import d12 import d13 import d14 import d15 +import d16 -mods = [d01, d02, d03, d04, d05, d06, d07, d08, d09, d10, d11, d12, d13, d14, d15] +mods = [d01, d02, d03, d04, d05, d06, d07, d08, d09, d10, d11, d12, d13, \ + d14, d15, d16] timings = [[0 for _ in range(2)] for _ in range(len(mods))] clock_type = time.CLOCK_MONOTONIC |
