summaryrefslogtreecommitdiffstats
path: root/src/act4e_solutions/intro.py
blob: 2a4856d13a3b4134dbb26ff7d981249a0be6df39 (plain)
1
2
3
4
5
6
import act4e_interfaces as I


class SolSimpleIntro(I.SimpleIntro):
    def sum(self, a: int, b: int) -> int:
        raise NotImplementedError()