binaries!

This commit is contained in:
nora 2023-12-03 13:58:31 +01:00
parent 13ac9a70ce
commit 5dff963dc2
8 changed files with 286 additions and 69 deletions

View file

@ -1,7 +1,11 @@
mod cmd;
use std::borrow::Cow;
use nom::{character::complete::digit1, combinator::map, IResult};
pub use self::cmd::main;
pub type Solution = fn(&str) -> u64;
pub trait Day {