Update __init__.py
This commit is contained in:
parent
0f6d020d3c
commit
c7f6323fba
1 changed files with 3 additions and 4 deletions
|
@ -1,13 +1,12 @@
|
|||
from typing import Any
|
||||
from typing import *
|
||||
from aocpy import BaseChallenge
|
||||
|
||||
|
||||
class Challenge(BaseChallenge):
|
||||
|
||||
@staticmethod
|
||||
def one(instr: str) -> Any:
|
||||
def one(instr: str) -> int:
|
||||
raise NotImplementedError
|
||||
|
||||
@staticmethod
|
||||
def two(instr: str) -> Any:
|
||||
def two(instr: str) -> int:
|
||||
raise NotImplementedError
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue