mirror of
https://github.com/jneug/adventofcode.git
synced 2026-04-14 06:43:33 +02:00
4 lines
115 B
Python
4 lines
115 B
Python
input = []
|
|
with open('day6_input.txt', 'r') as f:
|
|
for line in f.readlines():
|
|
input.append(line.strip()) |