162. Find Peak Element
Problem Statement
A peak element is an element that is strictly greater than its neighbors.
Given a 0-indexed integer array nums
, find a peak element, and return its index. If the array contains multiple peaks, return the index to any of the peaks.
You may imagine that nums[-1] = nums[n] = -∞
. In other words, an element is always considered to be strictly greater than a neighbor that is outside the array.
You must write an algorithm that runs in O(log n)
time.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 1000
-231 <= nums[i] <= 231 - 1
nums[i] != nums[i + 1]
for all validi
.
Intuition
Links
https://leetcode.com/problems/find-peak-element/description/
Video Links
https://www.youtube.com/watch?v=cXxmbemS6XM&ab_channel=takeUforward
Approach 1:
C++
Approach 2:
C++
Approach 3:
C++
Approach 4:
C++
Similar Problems
Previous34. Find First and Last Position of Element in Sorted ArrayNext33. Search in Rotated Sorted Array
Last updated