1
0
www.mikescher.com/www/statics/aoc/2017/05_solution-1.py

21 lines
343 B
Python
Raw Normal View History

2020-01-13 12:57:50 +01:00
#!/usr/bin/env python3
import aoc
import itertools
rawinput = aoc.read_input(5)
instructions = list(map(lambda x: int(x), rawinput.splitlines()))
ilen = len(instructions)
pos = 0
for i in itertools.count(1):
v = instructions[pos]
instructions[pos] += 1
pos += v
if pos < 0 or pos >= ilen:
print(i)
exit()