Add script template

This commit is contained in:
Joscha 2018-12-03 09:00:19 +00:00
parent 16eb74908a
commit 4532819424

14
solve.py Normal file
View file

@ -0,0 +1,14 @@
import sys
# PART 1
# PART 2
def main(filename):
print(f"Solutions for {filename}")
print(f"Part 1: NYI")
print(f"Part 2: NYI")
if __name__ == "__main__":
for filename in sys.argv[1:]:
main(filename)