I'm completing the Advent of Code puzzles and storing my answers here to compare with friends & family. 2021: C++ & some Python. 2022: C++ & some Rust. https://adventofcode.com/
Go to file
2024-12-03 09:45:29 -05:00
2020 Added part one of day four, plus a few 2020's from my laptop. 2021-12-06 22:32:30 -05:00
2021 2022 begins. 2022-12-01 14:11:53 -05:00
2022 Added some missing old files and new day2 of 2024. 2024-12-02 14:07:39 -05:00
2023/1 Added some missing old files and new day2 of 2024. 2024-12-02 14:07:39 -05:00
2024/2 Oops. .end() is one past the end, so get rid of the -1. 2024-12-03 09:45:29 -05:00
.gitignore 2022 begins. 2022-12-01 14:11:53 -05:00
README.md Added a readme :) 2021-12-08 14:51:22 -05:00

Welcome

I'm completing the Advent of Code puzzles and storing my answers here to compare with friends & family. I'm starting in 2021 and using it to learn Python. Hopefully it looks better further into the month as I learn more features!

Files

Since there are two parts to each question, my code is saved in the state it was at the time I discovered the first answer as main.py. Logically, main2.py is the state of the code after solving the second half; sometimes it will still contain the solution for the first half (day 6, for example), while other times it'll be a conversion of main.py in order to solve the second half (day 4, for example). Not all days are refactored!