https://github.com/ajkavanagh/aoc2021
AoC 2021 in Rust.
https://github.com/ajkavanagh/aoc2021
Last synced: 3 months ago
JSON representation
AoC 2021 in Rust.
- Host: GitHub
- URL: https://github.com/ajkavanagh/aoc2021
- Owner: ajkavanagh
- Created: 2021-12-30T17:17:14.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T19:49:06.000Z (over 3 years ago)
- Last Synced: 2025-01-11T13:17:49.195Z (5 months ago)
- Language: Rust
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2021
The is the start of my AoC 2021. 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
aoc2021 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