LeetCode p367 Valid Perfect Square 题解
1.题目:
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
题意:
判断一个数是否为完全平方数。
2.解题思路:
见代码。。注意使用long..防止越界
3.代码
1 |
|