diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-21 20:32:46 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2019-12-21 20:34:37 +0100 |
| commit | 92b857d5954c15afdc581375aedcd16feea19b67 (patch) | |
| tree | 00552f6f2de6c828dc3e3bc451dc4a2019bb0b78 /19 | |
| parent | 6f8e61d3b511ce4897d512e898507a0f6cc714f7 (diff) | |
| download | aoc-92b857d5954c15afdc581375aedcd16feea19b67.tar.gz | |
Fix spelling
Diffstat (limited to '19')
| -rw-r--r-- | 19/py/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/19/py/main.py b/19/py/main.py index d006d40..2a27287 100644 --- a/19/py/main.py +++ b/19/py/main.py @@ -26,11 +26,11 @@ mods = [d01, d02, d03, d04, d05, d06, d07, d08, d09, d10, \ d11, d12, d13, d14, d15, d16, d17, d18, d19, d20, \ d21] -skip = [] +skip = [19] for mod, day in zip(mods, range(len(mods))): if day+1 == 18: - print("input changed between part 1 and part 2, run it separatly") + print("input changed between part 1 and part 2 for day 18, run it separately") continue elif day+1 in skip: continue |
