Advent of Code Runner

This is a simple project that aims to be a runner for the Advent of Code.

Implement your solution. Let us do the rest.

Features

Getting started

[macro_use]

extern crate aocrunnerderive; ```

Flags your solutions

just add a #[aoc(day1, part1)] before your function ! ```

[aoc(day1, part1)]

fn part1(input: &str) -> i32 { ... } `` Supported signatures :&stror&[u8]` as input, any type implementing display as output. For custom input, see below.

Custom Generators

You need to pre-process input in a separated function ? generators are for you ! ```

[aoc_generator(day2)]

fn input_generator(input: &str) -> Vec { ... }

[aoc(day2, part1)]

fn part1(input: &[Gift]) -> u32 { ... } ```

Run your code

See cargo-aoc