-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path08.py
50 lines (45 loc) · 1.25 KB
/
08.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
def load(path):
with open(path, 'r') as raw:
x = raw.read().strip().split('\n')
return x
def part1(code):
acc = 0
i = 0
visited = []
while i not in visited:
visited.append(i)
inst, value = code[i].split(' ')
if inst == 'nop':
i += 1
elif inst == 'acc':
acc += int(value)
i += 1
elif inst == 'jmp':
i += int(value)
return acc
def part2(code):
length = len(code)
f_code = tuple(code)
for j in range(len(code)):
acc = 0
i = 0
visited = []
altered_code = list(f_code)
if 'acc' in altered_code[j]:
continue
elif 'jmp' in altered_code[j]:
altered_code[j] = altered_code[j].replace('jmp', 'nop')
elif 'nop' in altered_code[j]:
altered_code[j] = altered_code[j].replace('nop', 'jmp')
while i not in visited:
if i == length:
return acc
visited.append(i)
inst, value = altered_code[i].split(' ')
if inst == 'nop':
i += 1
elif inst == 'acc':
acc += int(value)
i += 1
elif inst == 'jmp':
i += int(value)