본문 바로가기
python-algorithm

Leetcode 69. Sqrt(x)

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

 

 

1
2
3
4
import math
class Solution:
    def mySqrt(self, x: int-> int:
        return int (math.sqrt(x))
cs
반응형

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

Leetcode 66. Plus One  (0) 2021.07.15
Leetcode 67. Add Binary  (0) 2021.07.15
백준 22193 Multiply  (0) 2021.07.15
백준 5539 콜센터  (0) 2021.07.15
Leetcode 28. Implement strStr()  (0) 2021.07.13

댓글