-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday10.py
74 lines (58 loc) · 1.47 KB
/
day10.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
data = open("input.txt", "r").read().strip().split("\n")
def part_one(data: list[str]):
i = 0
cycle = 0
x = 1
adding = False
val = 0
strengths = []
while i < len(data):
cycle += 1
if cycle % 40 == 20:
strengths.append(cycle * x)
if adding:
x += val
adding = False
else:
instruction = data[i].split(" ")
op = instruction[0]
if op == "addx":
adding = True
val = int(instruction[1])
i += 1
return sum(strengths)
def part_two(data: list[str]):
i = 0
grid = [["." for _ in range(40)] for _ in range(6)]
cycle = 0
x = 1
adding = False
val = 0
while i < len(data):
cycle += 1
crt_row = (cycle - 1) // 40
crt_pos = (cycle - 1) % 40
if crt_pos in [x, x - 1, x + 1]:
grid[crt_row][crt_pos] = "█"
if adding:
x += val
adding = False
else:
instruction = data[i].split(" ")
op = instruction[0]
if op == "addx":
adding = True
val = int(instruction[1])
i += 1
crt_pos += 1
if crt_pos == 40:
crt_row += 1
crt_pos = 0
res = ""
for row in grid:
res += "".join(row)
res += "\n"
return res
if __name__ == "__main__":
print(part_one(data))
print(part_two(data))