This commit is contained in:
a 2020-12-12 01:12:44 -06:00
parent c6b5153768
commit 7f94fcfba0
1 changed files with 2 additions and 2 deletions

View File

@ -119,14 +119,14 @@ def navigate2(instructions):
wx, wy = -wx, -wy
elif value == 270:
wx, wy = -wy, wx
return x, y
return x, y, wx, wy
def part1(instructions):
x, y, direction = navigate(instructions)
return abs(x) + abs(y)
def part2(instructions):
x, y = navigate2(instructions)
x, y, wx, wy = navigate2(instructions)
return abs(x) + abs(y)
def main():