-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent8.py
30 lines (24 loc) · 1.06 KB
/
advent8.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
lines = [[l.split(' ')[0], l.split(' ')[1][0], l.split(' ')[1][1:]] for l in open('8.txt', 'r').readlines()]
def run(game_lines, accumulator = 0, index = 0):
visited = {x: False for x in range(len(game_lines))}
while index < len(game_lines) and not visited[index]:
instruction, direction, amount = game_lines[index]
visited[index] = True
index += 1
if instruction == "acc":
accumulator += int(amount) if direction == "+" else int(amount) * -1
if instruction == "jmp":
index += -1 + (int(amount) if direction == "+" else int(amount) * -1)
return index == len(game_lines), accumulator
print(f"part 1: {run(lines)[1]}")
for index in range(len(lines)):
if lines[index][0] == 'nop':
new_lines = [[x[0], x[1], x[2]] for x in lines]
new_lines[index][0] = 'jmp'
elif lines[index][0] == 'jmp':
new_lines = [[x[0], x[1], x[2]] for x in lines]
new_lines[index][0] = 'nop'
else:
continue
if run(new_lines)[0]:
print(f"part 2: {run(new_lines)[1]}")