카테고리 없음

[leetcode] 69. Sqrt(x)

engine 2022. 3. 28. 22:55
class Solution:
    def mySqrt(self, x: int) -> int:
        return int(x**(1/2))