2019: day02: part 1

This commit is contained in:
Antoine Martin 2019-12-02 11:50:39 +01:00
parent 9903508129
commit c59cd75be3
4 changed files with 86 additions and 1 deletions

View file

@ -1,4 +1,5 @@
pub mod day01;
pub mod day02;
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;