1
1
mirror of https://github.com/theoludwig/advent_of_code.git synced 2025-02-20 14:38:48 +01:00
advent_of_code/README.md

1.3 KiB

theoludwig/advent_of_code

My Solutions for the Advent of Code, implemented in the Rust Programming Language.

Days Progress

2024

2023

Prerequisite: Rust Toolchain

The project is tested against the following Rust versions:

  • Minimum Supported Rust Version (MSRV): v1.84.1
  • Latest Stable Version

Usage

# Run a specific day's challenge (e.g. Day 1 of 2023)
cargo run --package puzzle_2023_day_1

# Create a new day's challenge (e.g. Day 1 of 2023)
cd advent_2023
cargo new puzzle_2023_day_1

# Build, Lint, and Test Usage
cargo build
cargo test
cargo clippy --verbose -- -D warnings
cargo fmt -- --check