Day 1 solution and individual routes to show code.
This commit is contained in:
17
2025/src/Days/Day2.php
Normal file
17
2025/src/Days/Day2.php
Normal 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,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user