Finit le jour 6

This commit is contained in:
2021-12-06 16:37:21 +01:00
parent f7608a8fc4
commit 10b3cd3730
2 changed files with 43 additions and 0 deletions

19
day_6/part_1.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
$timers = explode(',', file_get_contents('./input.txt'));
echo sprintf('Initial state: %s', implode(',', $timers));
for ($i = 0; $i < 80; $i++) {
for($t = 0, $l = count($timers); $t < $l; $t++) {
if ($timers[$t] > 0) {
$timers[$t]--;
} else {
$timers[$t] = 6;
$timers[] = 8;
}
}
echo sprintf('After %u day(s): %s%s', $i + 1, implode(',',$timers), "\n");
}
echo count($timers);