python-algorithm

Leetcode 50. Pow(x, n)

무적김두칠 2021. 7. 15. 14:39

1
2
3
class Solution:
    def myPow(self, x: float, n: int-> float:
        return pow(x,n)
cs
반응형