This repository contains my solutions for the Advent of Code 2023.
Advent of Code is an annual event where programmers can solve daily puzzles to earn stars and compete with others. More information can be found on the official website.
Each day's solution is in a separate directory named aoc2023-dayXX
where XX
is the day number. Inside each directory, you'll find src/main.rs
, which contain the solutions for both parts of that day's problem.
To run a solution, navigate to the directory of the day and run using cargo
. For example, to run day1
cd aoc2023-day1
cargo run --release
These solutions are provided "as is" and there is no guarantee that they are correct or optimal. They are meant to be a learning resource and should not be used to cheat.
This project is licensed under the MIT License - see the LICENSE file for details.