aoc2021/day_skel.py
Stefan Harmuth 2c5f859afc delete now useless performance.py
provide day skeleton
2021-11-21 13:21:45 +01:00

14 lines
218 B
Python

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