This is a simple project that aims to be a runner for the Advent of Code.
Implement your solution. Let us do the rest.
cargo new advent-of-code-2018 --lib
aoc-runner = "0.1.0"
aoc-runner-derive = "0.1.0"
extern crate aocrunnerderive; ```
aoc_lib!{ year = 2018 }
at the end of your lib.rsjust add a #[aoc(day1, part1)]
before your function !
```
fn part1(input: &str) -> i32 {
...
}
``
Supported signatures :
&stror
&[u8]` as input, any type implementing display as output.
For custom input, see below.
You need to pre-process input in a separated function ? generators are for you ! ```
fn input_generator(input: &str) -> Vec
fn part1(input: &[Gift]) -> u32 { ... } ```
See cargo-aoc