Solutions (in rust) to advent of code.
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
aoc_2018 wip day16 part1 Dec 24, 2018
.gitignore day1, part1 for aoc 2018 Dec 9, 2018
LICENSE-APACHE Rename LICENSE to LICENSE-APACHE Dec 9, 2018
LICENSE-MIT Create LICENSE-MIT Dec 9, 2018
README.md example output when executing Dec 10, 2018

README.md

Advent of Code 🎄 🎅 💻

Solutions (in rust) to advent of code.

Running the code

Running the solutions require the crate cargo-aoc to be installed. After setup, navigate into the desired year and run ...

user@home(advent-of-code) $ cd aoc_2018
user@home(aoc_2018) $ cargo aoc
...
AOC 2018
Day 1 - Part 1 : 490
	generator: 65.097µs,
	runner: 285ns

Day 1 - Part 2 : 70357
	generator: 58.198µs,
	runner: 20.493628ms

... to find all the answers given the included input files. Alternatively, one can choose to run a specific day and part ...

user@home(aoc_2018) $ cargo aoc -d {day} -p {part}

If you have any questions or suggestions, please feel free to open an issue! 🎁