69. Sqrt(x)
Sqrt(x)
Given a non-negative integer x
, return the square root of x
rounded down to the nearest integer. The returned integer should be non-negative as well.
You must not use any built-in exponent function or operator.
- For example, do not use
pow(x, 0.5)
in c++ orx ** 0.5
in python.
Example 1:
Input: x = 4 Output: 2 Explanation: The square root of 4 is 2, so we return 2.
Example 2:
Input: x = 8 Output: 2 Explanation: The square root of 8 is 2.82842..., and since we round it down to the nearest integer, 2 is returned.
Constraints:
0 <= x <= 231 - 1
- when
mid * mid
is equal tox
immediately returnmid
- when
hi
is smaller thanlo
- when
hi
is equal tolo
- Outside of the loop,
hi
is smaller or equal tolo
- Need to consider return value when
hi === lo
/**
* @param {number} x
* @return {number}
*/
var mySqrt = function(x) {
let lo = 0, hi = x;
while (lo < hi) {
const mid = parseInt((lo + hi)/2);
if (mid * mid === x) {
return mid;
}
if (x < mid * mid) {
hi = mid - 1;
} else {
lo = mid + 1;
}
}
return x < hi * hi ? hi - 1 : hi;
};
That’s all folks! In this post, we solved LeetCode problem 69. Sqrt(x)
I hope you have enjoyed this post. Feel free to share your thoughts on this.
You can find the complete source code on my GitHub repository. If you like what you learn. feel free to fork 🔪 and star ⭐ it.
In this blog, I have tried to collect & present the most important points to consider when improving Data structure and logic, feel free to add, edit, comment, or ask. For more information please reach me here
Happy coding!
Comments
Post a Comment