class Solution:
def myPow(self, x: float, n: int) -> float:
if n==0:
return 1
if n==1:
return x
if n==-1:
return 1/x
y = self.myPow(x, n>>1)
ans = y * y
if (n%2==1):
ans *=x
return ans
© 版权声明
文章版权归作者所有,请勿转载至任何平台。
THE END
暂无评论内容