LeetCode-50-Pow(x, n) 快速幂

class Solution(object): def myPow(self, x, n): """ :type x: float :type n: int :rtype: float """ ans=1; flag=1 if n<0: n
相关文章
相关标签/搜索