summaryrefslogtreecommitdiffstats
path: root/src/bin/2023/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-12-20 03:03:20 -0500
committerJesse Luehrs <doy@tozt.net>2023-12-20 03:03:20 -0500
commitfe30a88b050ada70eb5922e4a036a45da5808dbc (patch)
tree7a9d0a8fc8e2dc15e9e8091ccea13b0275f6f862 /src/bin/2023/main.rs
parent28122a7897219423d70ddd73c7dec0d68cfdec1b (diff)
downloadadvent-of-code-fe30a88b050ada70eb5922e4a036a45da5808dbc.tar.gz
advent-of-code-fe30a88b050ada70eb5922e4a036a45da5808dbc.zip
day 20 part 1HEADmaster
Diffstat (limited to 'src/bin/2023/main.rs')
-rw-r--r--src/bin/2023/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/2023/main.rs b/src/bin/2023/main.rs
index 1afb78e..14dc028 100644
--- a/src/bin/2023/main.rs
+++ b/src/bin/2023/main.rs
@@ -30,6 +30,7 @@ mod day16;
mod day17;
mod day18;
mod day19;
+mod day20;
// NEXT MOD
#[paw::main]
@@ -55,6 +56,7 @@ fn main(opt: Opt) -> Result<()> {
17 => advent_of_code::day!(2023, opt.day, opt.puzzle, day17),
18 => advent_of_code::day!(2023, opt.day, opt.puzzle, day18),
19 => advent_of_code::day!(2023, opt.day, opt.puzzle, day19),
+ 20 => advent_of_code::day!(2023, opt.day, opt.puzzle, day20),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}