Update __init__.py

This commit is contained in:
akp 2022-12-03 13:41:43 +00:00
parent 0f6d020d3c
commit c7f6323fba
No known key found for this signature in database
GPG key ID: AA5726202C8879B7

View file

@ -1,13 +1,12 @@
from typing import Any from typing import *
from aocpy import BaseChallenge from aocpy import BaseChallenge
class Challenge(BaseChallenge): class Challenge(BaseChallenge):
@staticmethod @staticmethod
def one(instr: str) -> Any: def one(instr: str) -> int:
raise NotImplementedError raise NotImplementedError
@staticmethod @staticmethod
def two(instr: str) -> Any: def two(instr: str) -> int:
raise NotImplementedError raise NotImplementedError