45 - Sqrt(x)
Q.
Given a non-negative integer x, compute and return the square root of x.
Since the return type is an integer, the decimal digits are truncated, and only the integer part of the result is returned.
Note: You are not allowed to use any built-in exponent function or operator, such as pow(x, 0.5) or x ** 0.5.
Example 1:
Input: x = 4
Output: 2
Example 2:
Input: x = 8
Output: 2
Explanation: The square root of 8 is 2.82842..., and since the decimal part is truncated, 2 is returned.
Constraints:
0 <= x <= 231 - 1
A)
var mySqrt = function(x) {
for ( i=0 ; i<=x ; i++ ) {
if( x >= i*i && x < (i+1)*(i+1)){
return i
}
}
};
var mySqrt = function(x) {
for ( i=0 ; i<=x ; i++ ) {
if( x >= i*i && x < (i+1)*(i+1)){
return i
}
}
};
Runtime: 172 ms, faster than 8.01% of JavaScript online submissions for Sqrt(x).
Memory Usage: 40.4 MB, less than 32.86% of JavaScript online submissions for Sqrt(x).
내가 풀었던 문제중에 런타임이 가장 낮게나온 문제
Author And Source
이 문제에 관하여(45 - Sqrt(x)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@developerjhp/알고리즘-45-Sqrtx저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)