Leetcode:valid Perfect Square

Source: Internet
Author: User

Valid Perfect Square


Total Accepted: 1976 Total Submissions: 5317 Difficulty: Medium

Given a positive integer num, write a function which returns True if num is a perfect square else False.

Note: do not use any built-in library function such as sqrt .

Example 1:

Input:16returns:true

Example 2:

Input:14returns:false

Credits:
Special thanks to @elmirap for adding this problem and creating all test cases.

Subscribe to see which companies asked this question

Hide TagsBinary SearchHide Similar Problems(M) Sqrt (x)




























Ideas:

Two-point lookup.


Java code:

public class Solution {public    boolean isperfectsquare (int num) {                long lo = 1, hi = NUM/2;                if (num = = 1) return true;                long x = num;                while (lo <= hi) {            long mid = lo + (Hi-lo)/2;            if (mid * mid = = = x)                return true;            else if (Mid * mid < x)                lo = mid + 1;            else                hi = mid-1;        }        return false;    }}


Leetcode:valid Perfect Square

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.