Quellcode für gropro.operation
from abc import ABC, abstractmethod
from gropro.element import Element
class IOperation(ABC):
@abstractmethod
def act(self, el: list[int]) -> list[int]: ...
from abc import ABC, abstractmethod
from gropro.element import Element
class IOperation(ABC):
@abstractmethod
def act(self, el: list[int]) -> list[int]: ...