aoc2021/skel_day.py

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 ""