Day 1 solution and individual routes to show code.

This commit is contained in:
dan612
2025-12-08 20:05:35 -05:00
parent 91d5eb7f0a
commit 2b2bc8f134
11 changed files with 4730 additions and 18 deletions

17
2025/src/Days/Day2.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
namespace Aoc2025\Days;
use Aoc2025\Day;
class Day2 extends Day {
public function run() {
$input = $this->getInputFile('day_2_input.txt');
return [
'part_1' => 0,
'part_2' => 0,
];
}
}