HomeLeetcode69. Sqrt(x) - Leetcode Solutions

69. Sqrt(x) – Leetcode Solutions

Description:

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++ or x ** 0.5 in python.

Examples:

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.

Solution in Python:

Python
class Solution:
    def mySqrt(self, x: int) -> int:
        # Special case for x = 0 or x = 1
        if x < 2:
            return x
        
        # Initialize the left and right pointers for binary search
        left, right = 0, x
        
        while left <= right:
            # Calculate the mid-point to avoid overflow
            mid = left + (right - left) // 2
            mid_squared = mid * mid
            
            if mid_squared == x:
                # If mid*mid is exactly x, mid is the square root
                return mid
            elif mid_squared < x:
                # If mid*mid is less than x, discard the left half
                left = mid + 1
            else:
                # If mid*mid is greater than x, discard the right half
                right = mid - 1
        
        # The right pointer will be at the largest integer whose square is <= x
        return right

Explanation:

  1. Special Case Handling:
    • If x is 0 or 1, return x immediately as the square root of 0 is 0 and the square root of 1 is 1.
  2. Binary Search Initialization:
    • Initialize left to 0 and right to x.
  3. Binary Search Loop:
    • Continue the loop as long as left is less than or equal to right.
    • Calculate the middle point mid to avoid overflow: mid = left + (right - left) // 2.
    • Calculate the square of mid: mid_squared = mid * mid.
  4. Comparison and Adjustment:
    • If mid_squared is exactly x, then mid is the square root, so return mid.
    • If mid_squared is less than x, move the left pointer to mid + 1 to search in the right half.
    • If mid_squared is greater than x, move the right pointer to mid - 1 to search in the left half.
  5. Return Result:
    • When the loop terminates, right will be positioned at the largest integer whose square is less than or equal to x, which is the correct answer.

This approach ensures that the function runs efficiently in logarithmic time, making it suitable even for large values of x within the constraints.

Solution in Javascript:

JavaScript
/**
 * @param {number} x
 * @return {number}
 */
var mySqrt = function(x) {
    // Special case for x = 0 or x = 1
    if (x < 2) {
        return x;
    }
    
    // Initialize the left and right pointers for binary search
    let left = 0;
    let right = x;
    
    while (left <= right) {
        // Calculate the mid-point to avoid overflow
        let mid = Math.floor(left + (right - left) / 2);
        let midSquared = mid * mid;
        
        if (midSquared === x) {
            // If mid*mid is exactly x, mid is the square root
            return mid;
        } else if (midSquared < x) {
            // If mid*mid is less than x, discard the left half
            left = mid + 1;
        } else {
            // If mid*mid is greater than x, discard the right half
            right = mid - 1;
        }
    }
    
    // The right pointer will be at the largest integer whose square is <= x
    return right;
};

Solution in Java:

Java
class Solution {
    public int mySqrt(int x) {
        // Special case for x = 0 or x = 1
        if (x < 2) {
            return x;
        }
        
        // Initialize the left and right pointers for binary search
        int left = 0;
        int right = x;
        
        while (left <= right) {
            // Calculate the mid-point to avoid overflow
            int mid = left + (right - left) / 2;
            // Calculate mid squared
            long midSquared = (long) mid * mid; // Use long to prevent overflow
            
            if (midSquared == x) {
                // If mid*mid is exactly x, mid is the square root
                return mid;
            } else if (midSquared < x) {
                // If mid*mid is less than x, discard the left half
                left = mid + 1;
            } else {
                // If mid*mid is greater than x, discard the right half
                right = mid - 1;
            }
        }
        
        // The right pointer will be at the largest integer whose square is <= x
        return right;
    }
}

Solution in C#:

C#
public class Solution {
    public int MySqrt(int x) {
        // Special case for x = 0 or x = 1
        if (x < 2) {
            return x;
        }
        
        // Initialize the left and right pointers for binary search
        int left = 0;
        int right = x;
        
        while (left <= right) {
            // Calculate the mid-point to avoid overflow
            int mid = left + (right - left) / 2;
            // Calculate mid squared
            long midSquared = (long)mid * mid; // Use long to prevent overflow
            
            if (midSquared == x) {
                // If mid*mid is exactly x, mid is the square root
                return mid;
            } else if (midSquared < x) {
                // If mid*mid is less than x, discard the left half
                left = mid + 1;
            } else {
                // If mid*mid is greater than x, discard the right half
                right = mid - 1;
            }
        }
        
        // The right pointer will be at the largest integer whose square is <= x
        return right;
    }
}

Subscribe
Notify of

0 Comments
Inline Feedbacks
View all comments

Popular