advent-of-code/2015/day07.py
2022-12-18 23:55:45 -05:00

21 lines
355 B
Python

import shared
import matrix
def part1(inp):
print(x)
for i in inp:
instruction, destination = i.split(" -> ")
print(instruction, destination)
def main():
with open(shared.get_fname(7), "r") as f:
inp = [x.rstrip() for x in f.readlines()]
part1(inp)
#pt2(inp)
if __name__ == "__main__":
main()