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`
13 lines
259 B
Python
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
|