Skip to content

dashed/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code

Build Status

I'm solving the Advent of Code puzzles using the Rust programming language.

Completed:

In progress:

Btw, there are spoilers...

Usage

# running code for some day of the Advent of Code event
# for example: cargo run -p day-01-2020
cargo run -p <day-num-year>

# quick check
cargo check
# or
# for example: cargo check -p day-01-2020
cargo check -p <day-num-year>

# creating a new cargo package
# for example: cargo new day-01-2020
# Then add an entry to the workspace in Cargo.toml
cargo new <year>/<day-num-year>

Results

2018