[rs] Solve 2022_05 part 1
This commit is contained in:
parent
995f62b4e3
commit
fb4db29665
5 changed files with 574 additions and 0 deletions
|
|
@ -41,6 +41,7 @@ days! {
|
|||
Y2022D02: "2022_02",
|
||||
Y2022D03: "2022_03",
|
||||
Y2022D04: "2022_04",
|
||||
Y2022D05: "2022_05",
|
||||
}
|
||||
|
||||
#[derive(Parser)]
|
||||
|
|
@ -68,6 +69,7 @@ fn main() -> io::Result<()> {
|
|||
Day::Y2022D02 => y2022::d02::solve(input),
|
||||
Day::Y2022D03 => y2022::d03::solve(input),
|
||||
Day::Y2022D04 => y2022::d04::solve(input),
|
||||
Day::Y2022D05 => y2022::d05::solve(input),
|
||||
}
|
||||
println!()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue