본문 바로가기
python-algorithm

Leetcode 50. Pow(x, n)

by 무적김두칠 2021. 7. 15.

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

'python-algorithm' 카테고리의 다른 글

Leetcode 771. Jewels and Stones  (0) 2021.07.15
Leetcode 171. Excel Sheet Column Number  (0) 2021.07.15
Leetcode 43. Multiply Strings  (0) 2021.07.15
Leetcode 29. Divide Two Integers  (0) 2021.07.15
Leetcode 66. Plus One  (0) 2021.07.15

댓글