2024/day3/common.py

4 lines
87 B
Python

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