2024 day 1 solved

master
kwout 1 month ago
parent c02f2ec040
commit a7aa40381e
  1. 16
      2024/1.py
  2. 3
      README.md

@ -0,0 +1,16 @@
list1, list2, summa, summa2 = [], [], 0, 0
for l in open("input.txt", 'r').read().splitlines():
tup = [int(n) for n in l.split(' ')]
list1.append(tup[0])
list2.append(tup[1])
list1.sort()
list2.sort()
for i in range(len(list1)):
summa += abs(list1[i] - list2[i])
summa2 += list2.count(list1[i]) * list1[i]
print(summa)
print(summa2)

@ -3,7 +3,8 @@ my solutions for the [Advent of Code](https://adventofcode.com/)
in progress:\
2021: 12/25\
2022: 8/25\
2023: 9/25
2023: 9/25\
2024: 0/25
planned:\
2020\

Loading…
Cancel
Save