2024/day3/common.py
2024-12-03 06:54:39 +01:00

4 lines
87 B
Python

def parse(filename: str) -> str:
with open(filename) as f:
return f.read()