My Advent Of Code code.
It contains the solutions from all years since 2015.
template
folder has a template to be used with Cargo Generate:
cd YEAR
cargo generate aoc --name dayXX
or better using the aoc_new tool, in YEAR directory:
../aoc_new X
with following in $CARGO_HOME/cargo-generate.toml
:
[favorites.aoc]
description = "Advent of Code template"
path = "FULL_PATH_TO_TEMPLATE"
vcs = "Git"
All exercises are free of any Clippy warnings. Clippy is set by default in pedantic mode in the workspace cargo file.
Tested on Rust 1.82.0.