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