more part2 opts

This commit is contained in:
nora 2023-12-03 15:57:48 +01:00
parent d08e7d8c7c
commit b7db57a568
7 changed files with 814 additions and 3 deletions

View file

@ -1,6 +1,6 @@
mod cmd;
use std::borrow::Cow;
use std::{borrow::Cow, fmt::Debug};
use nom::{character::complete::digit1, combinator::map, IResult};
@ -25,6 +25,7 @@ pub struct Variants {
pub variants: Vec<Variant>,
}
#[derive(Debug)]
pub struct Variant {
pub name: &'static str,
pub f: Solution,