Leetcode 50.Pow(x,n) Python

class Solution:
    def myPow(self, x, n):
        return x**n

 这……这直接用x**n就好了啊

。。。。。。

你可能感兴趣的:(Leetcode,leetcode,python,算法)