mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-27 22:00:31 +01:00
Attempt at a harness
This commit is contained in:
13
2024/aoc/days/day1.py
Normal file
13
2024/aoc/days/day1.py
Normal 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!"
|
||||
Reference in New Issue
Block a user