Advent of Code 2021 (in Python & JS)
aoc_year: Final[int] = 2021;Its mostly a mess, but some python solutions are really neat. I didn't finish all of them.
Advent of Code 2022 (in C++)
const size_t aoc_year {2022};Only done 13 days
Advent of Code 2023 (in Rust)
const aoc_year:u32 = 2023;All the days are done
Most days don't use cargo except day 24 and 25.
The input file loading is hard coded, and some days have hard coded constants specific to sizes of input.
Every solution is separate file, so build with: rustc -r ./p1.rs
Everything was handcrafted, by me :>