From 0cb7f8aa21366172d1cc9aaa4ff1ce2ced21fa37 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 1 Dec 2022 06:24:25 +0100 Subject: i'll use input downloaders from now on i hate everyone --- 2016/01/solve.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 2016/01/solve.py (limited to '2016/01/solve.py') diff --git a/2016/01/solve.py b/2016/01/solve.py new file mode 100644 index 0000000..30f3d77 --- /dev/null +++ b/2016/01/solve.py @@ -0,0 +1,20 @@ +NORTH=0 +EAST=1 +SOUTH=2 +WEST=3 + +data=[dat.strip() for dat in open("input", "r").read().split(",")] + +def part1(): + pos=[0,0] + rotation=0 + + for instruction in data: + rotation+=1 if instruction[0] == 'R' else -1 + if rotation % 2 == 0: + pos[1]+=int(instruction[1:])*(-1 if rotation % 4 == SOUTH else 1) + else: + pos[0]+=int(instruction[1:])*(-1 if rotation % 4 == WEST else 1) + return pos[0]+pos[1] + +print(part1()) -- cgit v1.2.3