adventOfCode/template/{{cookiecutter.__formattedDayNumber}}-{{cookiecutter.__camelTitle}}/py/__init__.py
AKP 23696d3877
Alter 9 files
Update `go.mod`
Delete `README.md`
Add `cookiecutter.json`
Add `local_extensions.py`
Add `README.md`
Rename `challenge.go` to `challenge.go`
Rename `info.json` to `info.json`
Rename `challenge.nim` to `challenge.nim`
Rename `__init__.py` to `__init__.py`
2022-11-27 02:08:08 +00:00

13 lines
259 B
Python

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