-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path367_ValidPerfectSquare.py
More file actions
47 lines (35 loc) · 1013 Bytes
/
Copy path367_ValidPerfectSquare.py
File metadata and controls
47 lines (35 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# coding: utf8
"""
题目链接: https://leetcode.com/problems/valid-perfect-square/description.
题目描述:
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.
"""
class Solution(object):
def isPerfectSquare(self, num):
"""
:type num: int
:rtype: bool
"""
if num <= 1:
return True
left = 0
right = num // 2
while left <= right:
mid = left + (right - left) // 2
p = mid * mid
if p == num:
return True
elif p < num:
left = mid + 1
else:
right = mid - 1
return False