LeetCode #69

Kiyong Lee·2022년 1월 12일
0

leetcode

목록 보기
15/20

69. sqrt


1. 코드

import math

class Solution:
    def mySqrt(self, x: int) -> int:
        a = int(math.sqrt(x))
        return a 

풀이는 뭐..;;

profile
ISTJ인 K-개발자

0개의 댓글