Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
aoc24/readme.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
42 lines (38 sloc)
1.01 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AOC 2024 | |
Welcome to my repository for the Advent of Code 2024. I will be solving the puzzles in Rust and posting my solutions here. | |
I also keep track of my time to solve each puzzle, so I can see how I improve over time. | |
## Setup | |
To run the solutions, you need to have Rust installed. You can install it by following the instructions on the [official website](https://www.rust-lang.org/tools/install). | |
## Usage | |
To run the solution for a specific day, use the following command: | |
```bash | |
cargo run <day number> <input file> | |
# So a command to run the solution for day 1 would look like this: | |
cargo run 1 input/day1.txt # or whatever the path to the input file is | |
``` | |
## Progress | |
- [x] Day 1 (solved in 10 minutes, 30 seconds) | |
- [ ] Day 2 | |
- [ ] Day 3 | |
- [ ] Day 4 | |
- [ ] Day 5 | |
- [ ] Day 6 | |
- [ ] Day 7 | |
- [ ] Day 8 | |
- [ ] Day 9 | |
- [ ] Day 10 | |
- [ ] Day 11 | |
- [ ] Day 12 | |
- [ ] Day 13 | |
- [ ] Day 14 | |
- [ ] Day 15 | |
- [ ] Day 16 | |
- [ ] Day 17 | |
- [ ] Day 18 | |
- [ ] Day 19 | |
- [ ] Day 20 | |
- [ ] Day 21 | |
- [ ] Day 22 | |
- [ ] Day 23 | |
- [ ] Day 24 | |
- [ ] Day 25 |