blob: 30f3d779c1ccd2386cf34630328a26eec09e691e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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())
|