Working on 2023-12-12 p1

This commit is contained in:
Frederik Baerentsen 2023-12-12 21:38:20 +01:00
parent 30622df89d
commit f78e360886

View File

@ -11,7 +11,7 @@ grid = []
with open(sys.argv[1]) as file: with open(sys.argv[1]) as file:
for line in file: for line in file:
grid.append(line.rstrip().split()) parts,groups = line.rstrip().split()
pprint(grid) print(parts)
print(groups)