Attempt at a harness

This commit is contained in:
2024-11-19 21:57:45 +01:00
parent 1f41f4b35a
commit b7244ad400
7 changed files with 265 additions and 0 deletions

13
2024/aoc/days/day1.py Normal file
View File

@@ -0,0 +1,13 @@
from typing import Any
from . import SeparateRunner
class DayRunner(SeparateRunner):
@classmethod
def part1(cls, _data: str) -> Any:
return "Hello"
@classmethod
def part2(cls, _data: str) -> Any:
return "world!"