Skip to content

Latest commit

 

History

History
203 lines (181 loc) · 6.9 KB

README.md

File metadata and controls

203 lines (181 loc) · 6.9 KB

Advent of Code

My solutions to Advent of Code problems. Written in Rust. Each one is in it's own cargo project.

Solutions

Advent of Code 2023

Advent of Code 2022

Advent of Code 2021

Advent of Code 2020

Advent of Code 2019

Advent of Code 2018

Advent of Code 2015

Run

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