advent-of-code/2024/day2/index.php
2024-12-06 09:34:23 -05:00

12 lines
265 B
PHP

<?php declare(strict_types=1);
function parse_reports(): array
{
$raw = file_get_contents('./input.txt');
$lines = explode("\n", trim($raw));
return array_map(fn (string $line) => explode(' ', $line), $lines);
}
$reports = parse_reports();
print_r($reports);