14 lines
215 B
Python
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 ""
|