/aoc2022

Advent of Code 2022 Solutions in Rust

Primary LanguageRustMIT LicenseMIT

Advent of Code 2022

These are puzzles for the Advent of Code 2022 challenge, written and solved in the Rust programming language.

The puzzle for each day is in its own .rs file in src/bin, and can be run using the following command (from the root folder):

cargo run --bin day1

Each day will also have a test, using the test input/output provided by the puzzle, which can be run using:

cargo test --bin day1

Walking Through Each Solution

As I finish each puzzle, I will create a post on School of Rust walking through the solution step-by-step, and link them all here: