mirror of
https://github.com/rjNemo/advent_of_code_2022
synced 2026-06-06 02:26:41 +00:00
3 lines
121 B
Python
3 lines
121 B
Python
def read_data() -> list:
|
|
with open("./input.txt", "r") as f:
|
|
return [line.strip() for line in f.readlines()]
|