Files
advent_of_code_2021/01/part1.php
2021-12-03 19:25:51 +01:00

18 lines
332 B
PHP

<?php
/**
*
*/
$increased = 0;
$input = file('input', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$input = array_map('intval', $input);
$previousReading = array_shift($input);
foreach ($input as $line) {
if ($line > $previousReading) {
$increased++;
}
$previousReading = $line;
}
echo $increased; //1553