Leetcode python x's square root __python

Source: Internet
Author: User
Tags square root

implements the int sqrt (int x) function.

Calculates and returns the square root of X, where x is a nonnegative integer.

Because the return type is an integer, the result retains only the part of the integer, and the decimal part is given away.

Example 1:

Input: 4
output: 2

Example 2:

Input: 8
output: 2
Note: 8 square root is 2.82842 ...,    because the return type is an integer, the decimal part will be shed.

Python code

Class Solution:
    def mysqrt (self, x):
        left=0;right=x while
        left<right:
            mid=int ((left+right)/2)
            if x<mid**2:
                right=mid
            Else:
                left=mid+1
        if left>1: return
            left-1
        else:
            Return to left



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.