You are given an integer array nums
, where nums[i]
is the value of the array at index i
. A peak element is an element that is strictly greater than its neighbors.
Return the index of any peak element if there is one. If there are multiple peaks, return the index to any one of them.
You may imagine that nums[-1] = nums[n] = -∞
, where n
is the length of nums
.
Input: nums = [1,2,3,1]
Output: 2
Explanation: 3 is a peak element and it is at index 2.
Input: nums = [1,2,1,3,5,6,4]
Output: 5
Explanation: 6 is a peak element and it is at index 5.
1 <= nums.length <= 1000
-2^31 <= nums[i] <= 2^31 - 1
nums[i] != nums[i + 1]
for all valid i
When the function findPeakElement
is called with the given example inputs, the expected outputs are:
[1,2,3,1]
, the output is 2
.[1,2,1,3,5,6,4]
, the output is 5
.console.log(findPeakElement([1,2,3,1])); // Output: 2
console.log(findPeakElement([1,2,1,3,5,6,4])); // Output: 5
Memory: 0
CPU: 0