Class Solution
- java.lang.Object
-
- g0801_0900.s0852_peak_index_in_a_mountain_array.Solution
-
public class Solution extends Object
852 - Peak Index in a Mountain Array.Easy
Let’s call an array
arra mountain if the following properties hold:arr.length >= 3- There exists some
iwith0 < i < arr.length - 1such that:arr[0] < arr[1] < ... arr[i-1] < arr[i]arr[i] > arr[i+1] > ... > arr[arr.length - 1]
Given an integer array
arrthat is guaranteed to be a mountain, return anyisuch thatarr[0] < arr[1] < ... arr[i - 1] < arr[i] > arr[i + 1] > ... > arr[arr.length - 1].Example 1:
Input: arr = [0,1,0]
Output: 1
Example 2:
Input: arr = [0,2,1,0]
Output: 1
Example 3:
Input: arr = [0,10,5,2]
Output: 1
Constraints:
3 <= arr.length <= 1040 <= arr[i] <= 106arris guaranteed to be a mountain array.
Follow up: Finding the
O(n)is straightforward, could you find anO(log(n))solution?
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intpeakIndexInMountainArray(int[] arr)
-