adventOfCode/template/{{cookiecutter.__formattedDayNumber}}-{{cookiecutter.__camelTitle}}/py/__init__.py
AKP ae703f98aa
Code formatting
Signed-off-by: AKP <tom@tdpain.net>
2022-12-21 17:12:28 +00:00

12 lines
256 B
Python

from typing import *
from aocpy import BaseChallenge
class Challenge(BaseChallenge):
@staticmethod
def one(instr: str) -> int:
raise NotImplementedError
@staticmethod
def two(instr: str) -> int:
raise NotImplementedError