mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
14 lines
248 B
Python
14 lines
248 B
Python
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!"
|