2021: day09: part 1
This commit is contained in:
parent
b5c4b72864
commit
6eb8041362
5 changed files with 241 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ use aoc2021::day05;
|
|||
use aoc2021::day06;
|
||||
use aoc2021::day07;
|
||||
use aoc2021::day08;
|
||||
use aoc2021::day09;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
let days: &[DayFunc] = &[
|
||||
|
|
@ -21,6 +22,7 @@ fn main() -> Result<()> {
|
|||
day06::run,
|
||||
day07::run,
|
||||
day08::run,
|
||||
day09::run,
|
||||
];
|
||||
|
||||
aoc::run(days)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue