/AoC2023

Primary LanguageRustMIT LicenseMIT

Advent of Code 2023 Solutions

This repository contains my solutions for the Advent of Code 2023.

About Advent of Code

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.

Structure

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.

Running the Solutions

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

Disclaimer

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.

License

This project is licensed under the MIT License - see the LICENSE file for details.