This repository contains Rust-based solutions to the 2024 Advent of Code challenge.
To run a solution to a puzzle, use the just recipe. This assumes that you have the just
command-runner installed
and your input data is located in a file using the pattern day??.txt
saved in the .\data
directory. These files
are excluded from the repository per Advent of Code rules. The data files for
the puzzles from the puzzle text has been left in the repository for unit test purposes.
just day01part1
Receipts are also provided to run the solution against the example puzzle data given in each puzzle description:
just day01part1example
The data provided to me for my puzzles can be found in ./data
. The answer to a given puzzle can be found in
the top source code comments for a given solution.
Common data types, helper functions, etc., are in a common library.