advent-of-code/_templates/riddle/new/python.ejs.t
2022-12-08 15:12:15 +01:00

23 lines
346 B
Perl

---
to: <%= year %>/<%= day %>/python/main.py
---
#!/usr/bin/env python
from os.path import join, dirname
# Day <%= day %>
# Common
def read_input(filename):
data = join(dirname(__file__), '..', filename)
with open(data) as f:
return f.read().strip()
test = read_input('test.txt')
data = read_input('input.txt')
# Running