This website uses cookies to enhance the user experience

Find Peak Element

Difficulty: 💪🏽 Medium

Problem Statement

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.

Example
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.
Constraints
  • 1 <= nums.length <= 1000
  • -2^31 <= nums[i] <= 2^31 - 1
  • nums[i] != nums[i + 1] for all valid i

Expected Challenge Output

When the function findPeakElement is called with the given example inputs, the expected outputs are:

  • For the input [1,2,3,1], the output is 2.
  • For the input [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
function findPeakElement(nums) {
// YOUR SOLUTION HERE
}

Memory: 0

CPU: 0