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 |
댓글