852. Peak Index in a Mountain Array
Let's call an array arr a 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 arr that is guaranteed to be a mountain, return any i such that arr[0] < arr[1] < ... arr[i - 1] < arr[i] > arr[i + 1] > ... > arr[arr.length - 1].
Example 1:
Input: arr = [0,1,0]
Output: 1Example 2:
Input: arr = [0,2,1,0]
Output: 1Example 3:
Input: arr = [0,10,5,2]
Output: 1Example 4:
Input: arr = [3,4,5,1]
Output: 2Example 5:
Input: arr = [24,69,100,99,79,78,67,36,26,19]
Output: 2Constraints:
3 <= arr.length <= 1040 <= arr[i] <= 106arris guaranteed to be a mountain array.
# @lc code=start
using LeetCode
peak_index_in_mountain_array(arr) =
searchsortedfirst(1:(length(arr) - 1), length(arr) - 1; by=i -> arr[i] > arr[i + 1])
# @lc code=endpeak_index_in_mountain_array (generic function with 1 method)
This page was generated using DemoCards.jl and Literate.jl.