Solution fixes

This commit is contained in:
Dan Chadwick
2024-11-23 23:28:18 -05:00
parent f813f39f8a
commit 5e5c726ebb
2 changed files with 4 additions and 4 deletions

View File

@@ -1,10 +1,10 @@
<?php
$days = glob('./days/*.php');
$days = glob("./2015/days/*.php");
foreach ($days as $day) {
require($day);
}
$day1 = day1solution1();
$day1b = day1solution1b();
$d1 = day1solution1();
$d1b = day1solution1b();