[LeetCode] Sqrt(x) - JavaScript

이은빈 EUNBIN·2021년 4월 20일
0
post-thumbnail

👩🏻‍💻 문제

LeetCode #69 Sqrt(x)



👩🏻‍💻 풀이

var mySqrt = function(x) {
    return Math.floor(Math.sqrt(x));
};
profile
Frontend Engineer & Value Creator

0개의 댓글