Skip to content

ziegfried/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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