diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-09 07:31:33 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-09 09:19:56 +0100 |
| commit | 1584228512345750bf187bcb18659a176a5fc2be (patch) | |
| tree | bd1418dbda40890e12acd6aa5639fa6688e7284c /solutions/py/main.py | |
| parent | f79931b49d78b4a1cd9189a3d14dfc426be8f545 (diff) | |
| download | aoc-1584228512345750bf187bcb18659a176a5fc2be.tar.gz | |
Add profiling and timing day 9
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 694c23f..06133f3 100644 --- a/solutions/py/main.py +++ b/solutions/py/main.py @@ -8,8 +8,9 @@ import d05 import d06 import d07 import d08 +import d09 -mods = [d01, d02, d03, d04, d05, d06, d07, d08] +mods = [d01, d02, d03, d04, d05, d06, d07, d08, d09] timings = [[0 for _ in range(2)] for _ in range(len(mods))] clock_type = time.CLOCK_MONOTONIC |
