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

40 lines
531 B
Perl
Raw Normal View History

2021-12-01 14:46:12 +01:00
---
2023-11-18 17:06:39 +01:00
to: <%= dir %>/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
2023-11-29 15:57:17 +01:00
# Setup
2021-12-01 14:46:12 +01:00
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
2023-11-29 15:57:17 +01:00
TEST = read_input('test.txt')
INPUT = read_input('input.txt')
# Task
def part_a(raw: str):
pass
def part_b(raw: str):
pass
2021-12-07 12:13:33 +01:00
2022-12-08 15:12:15 +01:00
# Running
2023-11-29 15:57:17 +01:00
print('1.')
print(part_a(TEST))
print(part_a(INPUT))
print('\n2.')
print('1.')
print(part_b(TEST))
print(part_b(INPUT))