2023: day01: part 1
This commit is contained in:
parent
516fed49be
commit
0df2dd8dd8
8 changed files with 1099 additions and 1 deletions
11
aoc2023/src/main.rs
Normal file
11
aoc2023/src/main.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
use anyhow::Result;
|
||||
|
||||
use aoc::DayFunc;
|
||||
|
||||
use aoc2023::day01;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
let days: &[DayFunc] = &[day01::run];
|
||||
|
||||
aoc::run(days)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue