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
相關文章
相關標籤/搜索