1
0

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

This commit is contained in:
Stefan Müller
2026-01-26 22:01:52 +01:00
parent 8f9356e81e
commit b5665199e1
8 changed files with 126 additions and 1 deletions
+4 -1
View File
@@ -2,7 +2,7 @@ use advent_of_code_2025::solvers;
fn main() {
println!("### Advent of Code 2025 ###\n");
// SecretEntrance
solvers::run(solvers::secret_entrance::SecretEntrance {});
// GiftShop
// Lobby
solvers::run(solvers::printing_department::PrintingDepartment {});
@@ -11,4 +11,7 @@ fn main() {
// Laboratories
solvers::run(solvers::playground::Playground::new(None));
solvers::run(solvers::movie_theater::MovieTheater {});
// Factory
// Reactor
// ChristmasTreeFarm
}