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
- Host: GitHub
- URL: https://github.com/ajkavanagh/aoc2020
- Owner: ajkavanagh
- Created: 2020-12-09T20:34:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-12T17:57:11.000Z (over 4 years ago)
- Last Synced: 2025-01-11T13:17:48.509Z (5 months ago)
- Language: Rust
- Size: 79.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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