Making things more versatile for day 2.

This commit is contained in:
Dan Chadwick
2024-11-24 10:06:50 -05:00
parent f39448a54e
commit 7f79c6079a
2 changed files with 10 additions and 22 deletions

View File

@@ -8,8 +8,8 @@ foreach ($days as $day) {
$solutions = [];
$solutions['day_1']['part_1'] = day1solution1();
$solutions['day_1']['part_2'] = day1solution1b();
$solutions['day_2']['part_1'] = day2part1();
$solutions['day_2']['part_2'] = day2part1b();
$solutions['day_2']['part_1'] = day2(1);
$solutions['day_2']['part_2'] = day2(2);
// OUTPUT THE SOLUTIONS WE HAVE.
foreach ($solutions as $day => $parts) {