-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValidPerfectSquare.java
34 lines (32 loc) · 1015 Bytes
/
ValidPerfectSquare.java
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
public class ValidPerfectSquare {
/** https://leetcode.com/problems/valid-perfect-square/ */
public static void main(String[] args) {
System.out.println(isPerfectSquare(2147395600));
}
/** Approach : Using Binary Search to find the square.
* Low: 0
* High: 46340 (Max possible square root for Integer.MAX_VALUE)
*
* LeetCode stats:
* Runtime: 0 ms, faster than 100.00% of Java online submissions.
* Memory Usage: 36.4 MB, less than 6.12% of Java online submissions.
* */
public static boolean isPerfectSquare(int num) {
int low = 1;
int high = 46340;
int mid = 0;
int square = 0;
while(low <= high) {
mid = low + (high - low)/2;
square = mid * mid;
if(square == num) {
return true;
} else if(square > num) {
high = mid - 1;
} else {
low = mid + 1;
}
}
return false;
}
}