diff --git a/2020/12/12.py b/2020/12/12.py index 7376e83..704982b 100644 --- a/2020/12/12.py +++ b/2020/12/12.py @@ -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():