1
0

Add solution for "Day 1: Secret Entrance", part 2

This commit is contained in:
Stefan Müller
2026-01-27 22:36:49 +01:00
parent b5665199e1
commit af14e87459
4 changed files with 48 additions and 21 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ const EXAMPLE_PATHS: &'static [&'static str] = &[
#[test]
fn secret_entrance() {
assert_eq!(
Ok((3, 0)),
Ok((3, 6)),
solvers::run_solver(solvers::secret_entrance::SecretEntrance {}, &EXAMPLE_PATHS)
);
}