aboutsummaryrefslogtreecommitdiff
path: root/2016/01/solve.py
diff options
context:
space:
mode:
authorMarvin Borner2022-12-01 06:24:25 +0100
committerMarvin Borner2022-12-01 06:24:25 +0100
commit0cb7f8aa21366172d1cc9aaa4ff1ce2ced21fa37 (patch)
treee7156ce204914c3e333c569c59c2709212318ae6 /2016/01/solve.py
parentce4f7000ea6169989819f99ab72c1194eb458a34 (diff)
i'll use input downloaders from now on
i hate everyone
Diffstat (limited to '2016/01/solve.py')
-rw-r--r--2016/01/solve.py20
1 files changed, 20 insertions, 0 deletions
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())