• + 1 comment
    class Calculator:
        def power(self, n:int, p:int) -> int:
            assert n >= 0 and p >= 0, "n and p should be non-negative"
            
            return n**p
    
    • + 0 comments

      class Calculator: def power(self, n, p): if n < 0 or p < 0: raise Exception("n and p should be non-negative") return n ** p