All of my 2022 solutions are written in Rust. Rust makes it super easy to build executables. If you would like to try out my solutions, all you will need to do is:
- Install Rust
- Clone this repository
- In your terminal (or Powershell on Windows), browse to the directory that you cloned this repo.
- Execute the solution to a particular day's challenge:
- cargo run -r -p dayX
- Day 1: 68 microseconds
- Day 2: 90 microseconds
- Day 3: 93 microseconds
- Day 4: 140 microseconds
- Day 5: 100 microseconds
- Day 6:
- Part 1: 1.3 microseconds
- Part 2: 80 microseconds
- Day 7: 320 microseconds (Lots of runtime borrow checking, SLOW!)