> For the complete documentation index, see [llms.txt](https://jaywin.gitbook.io/leetcode/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jaywin.gitbook.io/leetcode/solutions/1287-element-appearing-more-than-25-in-sorted-array.md).

# 1287. Element Appearing More Than 25% In Sorted Array

<https://leetcode.com/problems/element-appearing-more-than-25-in-sorted-array>

## Description

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
```

**Example 2:**

```
**Input:** arr = [1,1]
**Output:** 1
```

**Constraints:**

* `1 <= arr.length <= 104`
* `0 <= arr[i] <= 105`

## ac

```java
```
