1
0

Add solution for "Day 9: Movie Theater", part 1

This commit is contained in:
Stefan Müller
2025-12-10 23:52:19 +01:00
parent 77743a16dd
commit 695f08f99f
7 changed files with 80 additions and 0 deletions
+8
View File
@@ -40,3 +40,11 @@ fn playground() {
)
);
}
#[test]
fn movie_theater() {
assert_eq!(
Ok((4781235324, 0)),
solvers::run_solver(solvers::movie_theater::MovieTheater {}, &solvers::DATA_PATHS)
);
}