-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart_one.py
44 lines (30 loc) · 959 Bytes
/
part_one.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from typing import override
from infrastructure.solutions.base import Solution
class Year2024Day1Part1Solution(Solution):
@classmethod
@override
def parse_input(cls, text_input: str) -> dict[str, list[int]]:
left = []
right = []
for row in text_input.split('\n'):
if not row:
continue
x, y = map(int, row.split())
left.append(x)
right.append(y)
return {'left': left, 'right': right}
@classmethod
@override
def solve(cls, left: list[int], right: list[int]) -> int:
"""
Time: O(n*log(n)+m*log(m))
Space: O(n+m)
Where n - size of left list,
m - size of right list
"""
distance = 0
for x, y in zip(sorted(left), sorted(right)):
distance += abs(x - y)
return distance
if __name__ == '__main__':
print(Year2024Day1Part1Solution.main())