advent-of-code/_templates/riddle/new/python.ejs.t

24 lines
366 B
Perl

---
to: <%= year %>/<%= day %>/python/main.py
unless_exists: true
---
#!/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