Files
Advent2023/8/advent_1.py
Lauri Jesmin d5d6828dd5 valmis
2023-12-08 22:02:12 +02:00

50 lines
883 B
Python

#!/usr/bin/env python3.12
import re
class RL:
def __init__(self,L ,R ):
self.directions = {}
self.directions['R'] = R
self.directions['L'] = L
def get(self, direction):
return self.directions[direction]
def __str__(self):
return f"L: {self.get('L')} R: {self.get('R')}"
with open("data.txt") as file:
lines = [line.rstrip() for line in file]
x = 0
maps = {}
for line in lines:
print(line)
if x == 0:
instructions = line
x += 1
continue
if line == '':
print('Tühi rida')
continue
temp = re.findall(r'\w+', line)
z = list(temp)
maps[z[0]] = RL(z[1], z[2])
for i in maps:
print(i)
print(maps[i])
vastus = 'AAA'
x = 0
while vastus != "ZZZ":
print(vastus)
vastus = maps[vastus].get(instructions[x % len(instructions)])
x += 1
print(x)