An open API service indexing awesome lists of open source software.

https://github.com/ajkavanagh/aoc2020

Rust code for Advent of Code 2020
https://github.com/ajkavanagh/aoc2020

Last synced: 3 months ago
JSON representation

Rust code for Advent of Code 2020

Awesome Lists containing this project

README

        

# Advent of Code 2020

The is the start of my AoC 2020. It's in the Rust language as a way to
kickstart using Rust more frequently. Rust joins Python, Bash and Haskell as
my current "in use" languages.

# Building

aoc202 needs a rust toolchain to build it.
[rustup.rs](https://rustup.rs/) is probably the easiest way to get it.
The stable channel is the one to use.

## Steps

1. Clone the repository.
2. `cargo build --release`
3. run it with a day-part number (e.g. 1-2 is day 1, part 2)

# Using

TBA