├── .gitignore ├── README.md ├── day_01 ├── day_01_p1.py └── day_01_p2.py ├── day_02 ├── day_02_p1.py └── day_02_p2.py ├── day_03 ├── day_03_p1.py └── day_03_p2.py ├── day_04 ├── day_04_p1.py └── day_04_p2.py ├── day_05 ├── day_05_p1.py └── day_05_p2.py ├── day_06 ├── day_06_p1.py └── day_06_p2.py ├── day_07 ├── day_07_p1.py └── day_07_p2.py ├── day_08 ├── day_08_p1.py └── day_08_p2.py ├── day_09 ├── day_09_p1.py └── day_09_p2.py ├── day_10 ├── day_10_p1.py └── day_10_p2.py ├── day_11 ├── day_11_p1.py └── day_11_p2.py ├── day_12 ├── day_12_p1.py └── day_12_p2.py ├── day_13 ├── day_13_p1.py └── day_13_p2.py ├── day_14 ├── day_14_p1.py └── day_14_p2.py ├── day_15 ├── day_15_p1.py └── day_15_p2.py ├── day_16 ├── day_16 │ ├── day_16.cpp │ ├── day_16_p1 copy.py │ └── day_16_p2.cpp ├── day_16_p1.py └── day_16_p2.py ├── day_18 ├── day_18_p1.py └── day_18_p2.py ├── day_20 ├── day_20_p1.py └── day_20_p2.py ├── day_21 ├── day_21_p1.py └── day_21_p2.py ├── day_22 ├── day_22_p1.py └── day_22_p2.py ├── day_23 ├── day_23_p1.py └── day_23_p2.py ├── day_24 ├── day_24_p1.py └── day_24_p2.py ├── day_25 ├── day_25_p1.py └── day_25_p2.py └── new_day.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.in 2 | .vscode/ 3 | *.exe 4 | *.out 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/README.md -------------------------------------------------------------------------------- /day_01/day_01_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_01/day_01_p1.py -------------------------------------------------------------------------------- /day_01/day_01_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_01/day_01_p2.py -------------------------------------------------------------------------------- /day_02/day_02_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_02/day_02_p1.py -------------------------------------------------------------------------------- /day_02/day_02_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_02/day_02_p2.py -------------------------------------------------------------------------------- /day_03/day_03_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_03/day_03_p1.py -------------------------------------------------------------------------------- /day_03/day_03_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_03/day_03_p2.py -------------------------------------------------------------------------------- /day_04/day_04_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_04/day_04_p1.py -------------------------------------------------------------------------------- /day_04/day_04_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_04/day_04_p2.py -------------------------------------------------------------------------------- /day_05/day_05_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_05/day_05_p1.py -------------------------------------------------------------------------------- /day_05/day_05_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_05/day_05_p2.py -------------------------------------------------------------------------------- /day_06/day_06_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_06/day_06_p1.py -------------------------------------------------------------------------------- /day_06/day_06_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_06/day_06_p2.py -------------------------------------------------------------------------------- /day_07/day_07_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_07/day_07_p1.py -------------------------------------------------------------------------------- /day_07/day_07_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_07/day_07_p2.py -------------------------------------------------------------------------------- /day_08/day_08_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_08/day_08_p1.py -------------------------------------------------------------------------------- /day_08/day_08_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_08/day_08_p2.py -------------------------------------------------------------------------------- /day_09/day_09_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_09/day_09_p1.py -------------------------------------------------------------------------------- /day_09/day_09_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_09/day_09_p2.py -------------------------------------------------------------------------------- /day_10/day_10_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_10/day_10_p1.py -------------------------------------------------------------------------------- /day_10/day_10_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_10/day_10_p2.py -------------------------------------------------------------------------------- /day_11/day_11_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_11/day_11_p1.py -------------------------------------------------------------------------------- /day_11/day_11_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_11/day_11_p2.py -------------------------------------------------------------------------------- /day_12/day_12_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_12/day_12_p1.py -------------------------------------------------------------------------------- /day_12/day_12_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_12/day_12_p2.py -------------------------------------------------------------------------------- /day_13/day_13_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_13/day_13_p1.py -------------------------------------------------------------------------------- /day_13/day_13_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_13/day_13_p2.py -------------------------------------------------------------------------------- /day_14/day_14_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_14/day_14_p1.py -------------------------------------------------------------------------------- /day_14/day_14_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_14/day_14_p2.py -------------------------------------------------------------------------------- /day_15/day_15_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_15/day_15_p1.py -------------------------------------------------------------------------------- /day_15/day_15_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_15/day_15_p2.py -------------------------------------------------------------------------------- /day_16/day_16/day_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_16/day_16/day_16.cpp -------------------------------------------------------------------------------- /day_16/day_16/day_16_p1 copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_16/day_16/day_16_p1 copy.py -------------------------------------------------------------------------------- /day_16/day_16/day_16_p2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_16/day_16/day_16_p2.cpp -------------------------------------------------------------------------------- /day_16/day_16_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_16/day_16_p1.py -------------------------------------------------------------------------------- /day_16/day_16_p2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /day_18/day_18_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_18/day_18_p1.py -------------------------------------------------------------------------------- /day_18/day_18_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_18/day_18_p2.py -------------------------------------------------------------------------------- /day_20/day_20_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_20/day_20_p1.py -------------------------------------------------------------------------------- /day_20/day_20_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_20/day_20_p2.py -------------------------------------------------------------------------------- /day_21/day_21_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_21/day_21_p1.py -------------------------------------------------------------------------------- /day_21/day_21_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_21/day_21_p2.py -------------------------------------------------------------------------------- /day_22/day_22_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_22/day_22_p1.py -------------------------------------------------------------------------------- /day_22/day_22_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_22/day_22_p2.py -------------------------------------------------------------------------------- /day_23/day_23_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_23/day_23_p1.py -------------------------------------------------------------------------------- /day_23/day_23_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_23/day_23_p2.py -------------------------------------------------------------------------------- /day_24/day_24_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_24/day_24_p1.py -------------------------------------------------------------------------------- /day_24/day_24_p2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_24/day_24_p2.py -------------------------------------------------------------------------------- /day_25/day_25_p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/day_25/day_25_p1.py -------------------------------------------------------------------------------- /day_25/day_25_p2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /new_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/womogenes/AoC-2022-Solutions/HEAD/new_day.py --------------------------------------------------------------------------------