This repository contains my solutions to Advent of Code puzzles written in Rust.
src/bin/- Individual solution files for each day (e.g.,01.rs,02.rs, etc.)input/- Input data files for each day's puzzle- Each solution includes both Part 1 and Part 2 of the daily challenges
To run a specific day's solution:
cargo run --bin YYYY-DDFor example, to run the solution for Day 5 of 2024:
cargo run --bin 2024-05# Build all solutions
cargo build
# Run all tests
cargo test
# Check code formatting
cargo fmt --check
# Run clippy for linting
cargo clippy