题目
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:
1 | Input: 16 |
Example 2:
1 | Input: 14 |
思路
Easy题打卡。二分查找,理论上最快的方法貌似是牛顿迭代。
代码
1 | class Solution(object): |