aboutsummaryrefslogtreecommitdiff
path: root/2016/01
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
parentce4f7000ea6169989819f99ab72c1194eb458a34 (diff)
i'll use input downloaders from now on
i hate everyone
Diffstat (limited to '2016/01')
-rw-r--r--2016/01/input1
-rw-r--r--2016/01/solve.py20
2 files changed, 21 insertions, 0 deletions
diff --git a/2016/01/input b/2016/01/input
new file mode 100644
index 0000000..6ebcca5
--- /dev/null
+++ b/2016/01/input
@@ -0,0 +1 @@
+L3, R1, L4, L1, L2, R4, L3, L3, R2, R3, L5, R1, R3, L4, L1, L2, R2, R1, L4, L4, R2, L5, R3, R2, R1, L1, L2, R2, R2, L1, L1, R2, R1, L3, L5, R4, L3, R3, R3, L5, L190, L4, R4, R51, L4, R5, R5, R2, L1, L3, R1, R4, L3, R1, R3, L5, L4, R2, R5, R2, L1, L5, L1, L1, R78, L3, R2, L3, R5, L2, R2, R4, L1, L4, R1, R185, R3, L4, L1, L1, L3, R4, L4, L1, R5, L5, L1, R5, L1, R2, L5, L2, R4, R3, L2, R3, R1, L3, L5, L4, R3, L2, L4, L5, L4, R1, L1, R5, L2, R4, R2, R3, L1, L1, L4, L3, R4, L3, L5, R2, L5, L1, L1, R2, R3, L5, L3, L2, L1, L4, R4, R4, L2, R3, R1, L2, R1, L2, L2, R3, R3, L1, R4, L5, L3, R4, R4, R1, L2, L5, L3, R1, R4, L2, R5, R4, R2, L5, L3, R4, R1, L1, R5, L3, R1, R5, L2, R1, L5, L2, R2, L2, L3, R3, R3, R1
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())