leetcode367

Posted AsenYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode367相关的知识,希望对你有一定的参考价值。

public class Solution {
    public bool IsPerfectSquare(int num) {
        int low = 1, high = num;
            while (low <= high)
            {
                long mid = (low + high) >> 1;
                if (mid * mid == num)
                {
                    return true;
                }
                else if (mid * mid < num)
                {
                    low = (int)mid + 1;
                }
                else
                {
                    high = (int)mid - 1;
                }
            }
            return false;
    }
}

https://leetcode.com/problems/valid-perfect-square/#/description

以上是关于leetcode367的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode刷题367-简单-有效的平方数

leetcode367

leetcode 367 Valid Perfect Square

LeetCode 367. Valid Perfect Square

leetcode 367. Valid Perfect Square

Leetcode 367. Valid Perfect Square