adventOfCode/template/{{cookiecutter.__formattedDayNumber}}-{{cookiecutter.__camelTitle}}/py/__init__.py
2022-12-03 13:41:43 +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