2015: day02: finish

This commit is contained in:
Antoine Martin 2019-12-02 16:59:09 +01:00
parent 5bee7a0ce7
commit ca1952819f
4 changed files with 1132 additions and 1 deletions

View file

@ -1,9 +1,10 @@
use aoc::Result;
use aoc2015::day01;
use aoc2015::day02;
fn main() -> Result<()> {
let days: &[fn() -> Result<()>] = &[day01::run];
let days: &[fn() -> Result<()>] = &[day01::run, day02::run];
aoc::run(days)
}