├── .gitignore ├── 2019_01_p1.py ├── 2019_01_p2.py ├── 2019_02_p1.py ├── 2019_02_p2.py ├── 2019_03_p1.py ├── 2019_03_p2.py ├── 2019_04_p1.py ├── 2019_04_p2.py ├── 2019_05_p1.py ├── 2019_05_p2.py ├── 2019_06_p1.py ├── 2019_06_p2.py ├── 2019_07_p1.py ├── 2019_07_p2.py ├── 2019_08_animation.py ├── 2019_08_p1.py ├── 2019_08_p2.py ├── 2019_09_p1.py ├── 2019_09_p2.py ├── 2019_10_p1.py ├── 2019_10_p2.py ├── 2019_11_animation.py ├── 2019_11_p1.py ├── 2019_11_p2.py ├── 2019_12_p1.py ├── 2019_12_p2.py ├── 2019_13_p1.py ├── 2019_13_p2.py ├── 2019_14_p1.py ├── 2019_14_p2.py ├── 2019_15_animation.py ├── 2019_15_p1.py ├── 2019_15_p2.py ├── 2019_16_p1.py ├── 2019_16_p2.py ├── 2019_17_p1.py ├── 2019_17_p2.py ├── 2019_18_p1.py ├── 2019_18_p2.py ├── 2019_19_p1.py ├── 2019_19_p2.py ├── 2019_20_p1.py ├── 2019_20_p2.py ├── 2019_21_p1.py ├── 2019_21_p2.py ├── 2019_22_p1.py ├── 2019_22_p2.py ├── 2019_23_animation.py ├── 2019_23_p1.py ├── 2019_23_p2.py ├── 2019_24_p1.py ├── 2019_24_p2.py ├── 2019_25_p1.py ├── LICENSE ├── README.md ├── aoc.py ├── extras ├── README.md ├── day_11_hull.gif ├── day_15_area.gif ├── day_23_network.gif └── day_8_bios.gif └── files ├── input01 ├── input02 ├── input03 ├── input04 ├── input05 ├── input06 ├── input07 ├── input08 ├── input09 ├── input10 ├── input11 ├── input12 ├── input13 ├── input14 ├── input15 ├── input16 ├── input17 ├── input18 ├── input19 ├── input20 ├── input21 ├── input22 ├── input23 ├── input24 └── input25 /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /2019_01_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_01_p1.py -------------------------------------------------------------------------------- /2019_01_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_01_p2.py -------------------------------------------------------------------------------- /2019_02_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_02_p1.py -------------------------------------------------------------------------------- /2019_02_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_02_p2.py -------------------------------------------------------------------------------- /2019_03_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_03_p1.py -------------------------------------------------------------------------------- /2019_03_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_03_p2.py -------------------------------------------------------------------------------- /2019_04_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_04_p1.py -------------------------------------------------------------------------------- /2019_04_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_04_p2.py -------------------------------------------------------------------------------- /2019_05_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_05_p1.py -------------------------------------------------------------------------------- /2019_05_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_05_p2.py -------------------------------------------------------------------------------- /2019_06_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_06_p1.py -------------------------------------------------------------------------------- /2019_06_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_06_p2.py -------------------------------------------------------------------------------- /2019_07_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_07_p1.py -------------------------------------------------------------------------------- /2019_07_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_07_p2.py -------------------------------------------------------------------------------- /2019_08_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_08_animation.py -------------------------------------------------------------------------------- /2019_08_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_08_p1.py -------------------------------------------------------------------------------- /2019_08_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_08_p2.py -------------------------------------------------------------------------------- /2019_09_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_09_p1.py -------------------------------------------------------------------------------- /2019_09_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_09_p2.py -------------------------------------------------------------------------------- /2019_10_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_10_p1.py -------------------------------------------------------------------------------- /2019_10_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_10_p2.py -------------------------------------------------------------------------------- /2019_11_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_11_animation.py -------------------------------------------------------------------------------- /2019_11_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_11_p1.py -------------------------------------------------------------------------------- /2019_11_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_11_p2.py -------------------------------------------------------------------------------- /2019_12_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_12_p1.py -------------------------------------------------------------------------------- /2019_12_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_12_p2.py -------------------------------------------------------------------------------- /2019_13_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_13_p1.py -------------------------------------------------------------------------------- /2019_13_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_13_p2.py -------------------------------------------------------------------------------- /2019_14_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_14_p1.py -------------------------------------------------------------------------------- /2019_14_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_14_p2.py -------------------------------------------------------------------------------- /2019_15_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_15_animation.py -------------------------------------------------------------------------------- /2019_15_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_15_p1.py -------------------------------------------------------------------------------- /2019_15_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_15_p2.py -------------------------------------------------------------------------------- /2019_16_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_16_p1.py -------------------------------------------------------------------------------- /2019_16_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_16_p2.py -------------------------------------------------------------------------------- /2019_17_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_17_p1.py -------------------------------------------------------------------------------- /2019_17_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_17_p2.py -------------------------------------------------------------------------------- /2019_18_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_18_p1.py -------------------------------------------------------------------------------- /2019_18_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_18_p2.py -------------------------------------------------------------------------------- /2019_19_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_19_p1.py -------------------------------------------------------------------------------- /2019_19_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_19_p2.py -------------------------------------------------------------------------------- /2019_20_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_20_p1.py -------------------------------------------------------------------------------- /2019_20_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_20_p2.py -------------------------------------------------------------------------------- /2019_21_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_21_p1.py -------------------------------------------------------------------------------- /2019_21_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_21_p2.py -------------------------------------------------------------------------------- /2019_22_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_22_p1.py -------------------------------------------------------------------------------- /2019_22_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_22_p2.py -------------------------------------------------------------------------------- /2019_23_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_23_animation.py -------------------------------------------------------------------------------- /2019_23_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_23_p1.py -------------------------------------------------------------------------------- /2019_23_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_23_p2.py -------------------------------------------------------------------------------- /2019_24_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_24_p1.py -------------------------------------------------------------------------------- /2019_24_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_24_p2.py -------------------------------------------------------------------------------- /2019_25_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/2019_25_p1.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/README.md -------------------------------------------------------------------------------- /aoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/aoc.py -------------------------------------------------------------------------------- /extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/extras/README.md -------------------------------------------------------------------------------- /extras/day_11_hull.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/extras/day_11_hull.gif -------------------------------------------------------------------------------- /extras/day_15_area.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/extras/day_15_area.gif -------------------------------------------------------------------------------- /extras/day_23_network.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/extras/day_23_network.gif -------------------------------------------------------------------------------- /extras/day_8_bios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/extras/day_8_bios.gif -------------------------------------------------------------------------------- /files/input01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input01 -------------------------------------------------------------------------------- /files/input02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input02 -------------------------------------------------------------------------------- /files/input03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input03 -------------------------------------------------------------------------------- /files/input04: -------------------------------------------------------------------------------- 1 | 124075-580769 2 | -------------------------------------------------------------------------------- /files/input05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input05 -------------------------------------------------------------------------------- /files/input06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input06 -------------------------------------------------------------------------------- /files/input07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input07 -------------------------------------------------------------------------------- /files/input08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input08 -------------------------------------------------------------------------------- /files/input09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input09 -------------------------------------------------------------------------------- /files/input10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input10 -------------------------------------------------------------------------------- /files/input11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input11 -------------------------------------------------------------------------------- /files/input12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input12 -------------------------------------------------------------------------------- /files/input13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input13 -------------------------------------------------------------------------------- /files/input14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input14 -------------------------------------------------------------------------------- /files/input15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input15 -------------------------------------------------------------------------------- /files/input16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input16 -------------------------------------------------------------------------------- /files/input17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input17 -------------------------------------------------------------------------------- /files/input18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input18 -------------------------------------------------------------------------------- /files/input19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input19 -------------------------------------------------------------------------------- /files/input20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input20 -------------------------------------------------------------------------------- /files/input21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input21 -------------------------------------------------------------------------------- /files/input22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input22 -------------------------------------------------------------------------------- /files/input23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input23 -------------------------------------------------------------------------------- /files/input24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input24 -------------------------------------------------------------------------------- /files/input25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dementophobia/advent-of-code-2019/HEAD/files/input25 --------------------------------------------------------------------------------