[LeetCode] Valid Perfect Square

Posted immjc

tags:

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

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: 16
Returns: True

Example 2:

Input: 14
Returns: False

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

不使用sqrt判断一个数是否是完全平方数,

class Solution {
public:
    bool isPerfectSquare(int num) {
        for (int i = 1; i <= num / i; i++)
            if (i * i == num)
                return true;
        return false;
    }
};
// 0ms

 


以上是关于[LeetCode] Valid Perfect Square的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode: Valid Perfect Squares

leetcode 367. Valid Perfect Square

[LeetCode] Valid Perfect Square

Leetcode 367. Valid Perfect Square

[leetcode] 367. Valid Perfect Square

LeetCode 367. Valid Perfect Square