-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart_two.py
48 lines (33 loc) · 1 KB
/
part_two.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
45
46
47
48
from collections import Counter
from typing import override
from infrastructure.solutions.base import Solution
class Year2024Day1Part2Solution(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+m)
Space: O(1)
Where n - size of left list,
m - size of right list
"""
distance = 0
# For getting count in O(1)
right_count = Counter(right)
for x in left:
distance += x * right_count[x]
return distance
if __name__ == '__main__':
print(Year2024Day1Part2Solution.main())