AdventOfCode2020/inputs.py
marcus@weifer.de a820af0b60 init
2022-12-14 13:31:08 +01:00

5 lines
113 B
Python

def create_day_files():
for i in range(1,25):
f = open(f"inputs/day{i}.txt", "a")
create_day_files()