forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_1287.java
30 lines (29 loc) · 777 Bytes
/
_1287.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
package com.fishercoder.solutions;
/**
* 1287. Element Appearing More Than 25% In Sorted Array
*
* Given an integer array sorted in non-decreasing order, there is exactly one integer in the array that occurs more than 25% of the time.
* Return that integer.
*
* Example 1:
* Input: arr = [1,2,2,6,6,6,6,7,10]
* Output: 6
*
* Constraints:
*
* 1 <= arr.length <= 10^4
* 0 <= arr[i] <= 10^5
* */
public class _1287 {
public static class Solution1 {
public int findSpecialInteger(int[] arr) {
int quarter = arr.length / 4;
for (int i = 0; i < arr.length - quarter; i++) {
if (arr[i] == arr[i + quarter]) {
return arr[i];
}
}
return -1;
}
}
}