My solutions to Advent of Code problems. Written in Rust. Each one is in it's own cargo project.
Advent of Code 2023
- 2023 Day 25
- 2023 Day 24
- 2023 Day 23
- 2023 Day 21
- 2023 Day 20
- 2023 Day 19
- 2023 Day 18
- 2023 Day 17
- 2023 Day 16
- 2023 Day 15
- 2023 Day 14
- 2023 Day 13
- 2023 Day 12
- 2023 Day 11
- 2023 Day 10
- 2023 Day 9
- 2023 Day 8
- 2023 Day 7
- 2023 Day 6
- 2023 Day 5
- 2023 Day 4
- 2023 Day 3
- 2023 Day 2
- 2023 Day 1
Advent of Code 2022
Advent of Code 2021
Advent of Code 2020
Advent of Code 2019
Advent of Code 2018
Advent of Code 2015
To run the solutions you'll need to have Rust set up on your machine. The simplest way to execute a problem solution is to run cargo run
in a solution folder.
$ cd 2020/day1
$ cargo run
For some problems you may need to build/run the release binary for the program to complete in reasonable time, the debug build may be too slow.
$ cargo run --release