This repository contains my solutions for the Advent of Code 2024 challenges, implemented in Rust. Each day of the event is organized as a separate binary project.
Each project day_X
has:
main.rs
: The Rust program that solves the problem for the day.input.txt
: The input provided for the challenge.
Make sure you have Rust installed on your system.
git clone https://github.com/your-username/advent_of_code.git
cd advent_of_code
To run the solution for a specific day, use the following command:
cargo run --package day_X
replacing day_X
with your day of choice (e.g., day_one
).
- Thanks to Eric Wastl for creating Advent of Code and preparing lots of fun challenges each year.