advent_of_code_2022/common/file.py
2022-12-04 11:58:15 +01:00

3 lines
121 B
Python

def read_data() -> list:
with open("./input.txt", "r") as f:
return [line.strip() for line in f.readlines()]