1
0

Add solution for "Day 8: Playground", part 1

This commit is contained in:
Stefan Müller
2025-12-09 10:20:49 +01:00
parent 60a49cc5ce
commit 76b1e3cf89
4 changed files with 106 additions and 1 deletions
+5
View File
@@ -2,7 +2,12 @@ use advent_of_code_2025::solvers;
fn main() {
println!("### Advent of Code 2025 ###\n");
// SecretEntrance
// GiftShop
// Lobby
solvers::run(solvers::printing_department::PrintingDepartment {});
solvers::run(solvers::cafeteria::Cafeteria {});
solvers::run(solvers::trash_compactor::TrashCompactor {});
// Laboratories
solvers::run(solvers::playground::Playground::new(None));
}