Solution to Day 5: A Maze of Twisty Trampolines, All Alike
lines = open('input_d5.txt','r').readlines() | |
#lines = ["0","3","0","1","-3"] | |
inputs = [int(l) for l in lines] | |
i = 0 | |
cnt = 0 | |
while True: | |
s = inputs[i] | |
inputs[i] += 1 | |
cnt += 1 | |
if i + s >= len(inputs) or i+s<0: | |
break | |
#print s, i, inputs | |
i += s | |
print cnt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment