12 lines
256 B
Python
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
|