aoc2019/skel_day.py
2021-11-26 08:10:55 +01:00

14 lines
215 B
Python

from aoc import AOCDay
from typing import Any
class Day(AOCDay):
test_solutions_p1 = []
test_solutions_p2 = []
def part1(self) -> Any:
return ""
def part2(self) -> Any:
return ""