Python, LeetCode, 50. Pow(x, n)

xiaoxiao2021-02-28  86

class Solution: def myPow(self, x, n): """ :type x: float :type n: int :rtype: float """ return x**n
转载请注明原文地址: https://www.6miu.com/read-1950249.html

最新回复(0)