diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-11 07:06:18 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-11 07:06:18 +0100 |
| commit | bef82d77ceee6f34b9e50baf61461e7f3d5a6d6d (patch) | |
| tree | b4c112ed3c860609e3ae10fe67114bd30ab57055 /solutions/py/main.py | |
| parent | 7afab1ad3892084ee079fe5ef45edc7fb452af06 (diff) | |
| download | aoc-bef82d77ceee6f34b9e50baf61461e7f3d5a6d6d.tar.gz | |
Refactor and add timing/profiling day 11
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 f3c5b78..e860885 100644 --- a/solutions/py/main.py +++ b/solutions/py/main.py @@ -10,8 +10,9 @@ import d07 import d08 import d09 import d10 +import d11 -mods = [d01, d02, d03, d04, d05, d06, d07, d08, d09, d10] +mods = [d01, d02, d03, d04, d05, d06, d07, d08, d09, d10, d11] timings = [[0 for _ in range(2)] for _ in range(len(mods))] clock_type = time.CLOCK_MONOTONIC |
