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

24 lines
366 B
Perl
Raw Normal View History

2021-12-01 14:46:12 +01:00
---
to: <%= year %>/<%= day %>/python/main.py
2023-11-02 00:23:17 +01:00
unless_exists: true
2021-12-01 14:46:12 +01:00
---
#!/usr/bin/env python
from os.path import join, dirname
2021-12-03 08:58:27 +01:00
# Day <%= day %>
2021-12-01 14:46:12 +01:00
# Common
def read_input(filename):
data = join(dirname(__file__), '..', filename)
with open(data) as f:
2021-12-03 08:58:27 +01:00
return f.read().strip()
2021-12-01 14:46:12 +01:00
2021-12-07 12:13:33 +01:00
test = read_input('test.txt')
data = read_input('input.txt')
2022-12-08 15:12:15 +01:00
# Running