AdventOfCode2020/inputs.py

5 lines
113 B
Python
Raw Normal View History

2022-12-14 13:31:08 +01:00
def create_day_files():
for i in range(1,25):
f = open(f"inputs/day{i}.txt", "a")
create_day_files()