-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday03.py
58 lines (40 loc) · 1.35 KB
/
day03.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
49
50
51
52
53
54
55
56
57
58
from .shared import Solution
def frequency(input_: list[str]) -> list[int]:
wordsize = len(input_[0])
freq = [0] * wordsize
for measure in input_:
for i in range(wordsize):
freq[i] += int(measure[i])
return freq
def part1(input_) -> tuple[int, int]:
freq = frequency(input_)
threshold = len(input_) / 2
gamma = ["1" if x >= threshold else "0" for x in freq]
epsilon = ["0" if x >= threshold else "1" for x in freq]
return (int("".join(gamma), 2), int("".join(epsilon), 2))
def filter(input_: list[str], index: int, most: bool) -> list[str]:
freq = 0
for m in input_:
freq += int(m[index])
if most:
filter_ = "1" if freq >= len(input_) / 2 else "0"
else:
filter_ = "0" if freq >= len(input_) / 2 else "1"
return [x for x in input_ if x[index] == filter_]
def part2(input_) -> tuple[int, int]:
wordsize = len(input_[0])
o2 = input_.copy()
for i in range(wordsize):
o2 = filter(o2, i, True)
if len(o2) == 1:
break
co2 = input_.copy()
for i in range(wordsize):
co2 = filter(co2, i, False)
if len(co2) == 1:
break
return (int(o2[0], 2), int(co2[0], 2))
def main(input_: list[str]):
rates = part1(input_)
lf = part2(input_)
return Solution(rates[0] * rates[1], lf[0] * lf[1])