aoc24/README.md

43 lines
1.1 KiB
Markdown
Raw Normal View History

2024-12-21 10:56:07 -08:00
# Advent of Code - 2024
These is a repo for my solutions to the Advent of Code 2024 puzzles. I will be using [Rust](https://www.rust-lang.org/) for all of my solutions.
2024-12-21 11:40:43 -08:00
## Progress
|Mon|Tue|Wed|Thu|Fri|Sat|Sun|
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
| | | | | | |1✅|
|2|3|4|5|6|7|8|
|9|10|11|12|13|14|15|
|16|17|18|19|20|21|22|
|23|24|25| | | | |
2024-12-21 10:56:07 -08:00
## Running the solutions
To run the solutions, you will need to have Rust installed. You can install Rust by following the instructions [here](https://www.rust-lang.org/tools/install).
Once you have Rust installed, you can run the solutions by running the following command:
```sh
2024-12-21 10:58:50 -08:00
cargo test
2024-12-21 10:56:07 -08:00
```
2024-12-21 10:58:50 -08:00
This will run all of the tests for the solutions. You can also run the solutions for a specific day by running the following command:
2024-12-21 10:56:07 -08:00
```sh
2024-12-21 10:58:50 -08:00
cargo test day_01
2024-12-21 10:56:07 -08:00
```
### Nix
I maintain a Nix Flake that you can use to help setup or develop the solutions.
You can use the flake by running the following command:
```sh
nix develop
2024-12-21 10:58:50 -08:00
```
## License
2024-12-21 11:37:18 -08:00
2024-12-21 10:58:50 -08:00
These solutions are licensed under the Unlicense. See the [LICENSE](LICENSE) file for more information.