Finit le jour 1

This commit is contained in:
Clement Desmidt
2024-12-02 09:47:25 +01:00
parent e98ff431dc
commit 7c9d8ae1bd
2 changed files with 41 additions and 0 deletions

20
day_1/part_1.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
$list_1 = [];
$list_2 = [];
$lines = array_filter(explode("\n", file_get_contents(__DIR__.'/input.txt')), static fn($line) =>!empty($line));
foreach ($lines as $line) {
[$a, $b] = explode(" ", $line);
$list_1[] = $a;
$list_2[] = $b;
}
sort($list_1); sort($list_2);
$total = 0;
for ($i=0, $l=count($list_1); $i < $l; $i++) {
$total += abs($list_1[$i] - $list_2[$i]);
}
echo $total;