Welcome to my solutions for the Advent of Code 2024! Each day's challenge is solved using Rust. Here's how to run my stuff:
-
Navigate to any Day's Directory
Move into the directory for the specific day you want to run (e.g.,day01/
). -
Edit the Input File
Customize theinput.txt
file in the directory if needed. This file contains the puzzle input for the day. -
Run the Code
Use the following command to execute the desired solution:- For Part 1:
cargo run --bin part1
- For Part 2:
cargo run --bin part2
- For Part 1:
Ensure you have the following installed:
- Rust
Install Rust usingrustup
:curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Important
Stay silly!