aoc2021/skel_day.py
2021-12-07 06:46:21 +01:00

14 lines
221 B
Python

from tools.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 ""