162. Find Peak Element - Detailed Explanation
Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!
Problem Statement
Given an array of integers nums
, a peak element is defined as an element that is strictly greater than its neighbors. You need to find a peak element and return its index. If the array contains multiple peaks, returning the index of any one of the peaks is acceptable.
Additional Details:
- You may assume that
nums[-1]
andnums[n]
(where n is the length of the array) are negative infinity (i.e., they do not exist), which guarantees that at least one peak exists. - The input array can have a single element, which is trivially a peak.
Example Inputs, Outputs, and Explanations
-
Example 1:
- Input:
nums = [1,2,3,1]
- Output:
2
- Explanation: The element at index 2 is
3
, which is greater than its neighbors2
and1
.
- Input:
-
Example 2:
- Input:
nums = [1,2,1,3,5,6,4]
- Output: Could be
1
or5
- Explanation:
- At index 1, the element is
2
(with neighbors1
and1
), so2
is a peak. - At index 5, the element is
6
(with neighbors5
and4
), so6
is also a peak.
- At index 1, the element is
- Input:
-
Example 3 (Edge Case):
- Input:
nums = [1]
- Output:
0
- Explanation: With only one element, it is by definition a peak.
- Input:
Constraints
- The length of
nums
is at least 1. - You can assume that
nums[i]
is not equal tonums[i+1]
for all valid indices (which guarantees no plateaus). - An optimal solution is expected to have a time complexity better than O(n), ideally O(log n).
Hints to Approach the Solution
-
Directional Clues from Neighbors:
- Observe that if an element is less than its right neighbor, then there must be a peak on the right side. Conversely, if an element is greater than its right neighbor, then a peak must lie on the left (including possibly the current element).
-
Binary Search Opportunity:
- Given the above observation, you can leverage a binary search approach by comparing the mid-element with its neighbor to decide which half of the array contains a peak.
Approach 1: Linear Scan (Brute Force)
Explanation
- Method:
- Traverse the array from left to right and check for each element whether it is a peak.
- Specifically, for each index
i
, verify ifnums[i]
is greater than bothnums[i-1]
(ifi > 0
) andnums[i+1]
(ifi < n-1
).
- Edge Handling:
- Handle the first and last elements separately since they have only one neighbor.
Pseudocode
if length(nums) == 1:
return 0
if nums[0] > nums[1]:
return 0
if nums[n-1] > nums[n-2]:
return n-1
for i in range(1, n-1):
if nums[i] > nums[i-1] and nums[i] > nums[i+1]:
return i
Downsides:
- This approach runs in O(n) time, which is acceptable for smaller inputs but not optimal if the problem requires O(log n).
Approach 2: Binary Search (Optimal)
Explanation
- Method:
- Use binary search to reduce the search space efficiently.
- At each iteration, compare the middle element with its right neighbor.
- If
nums[mid] > nums[mid+1]
, then a peak exists in the left half (including mid). - Otherwise, a peak exists in the right half.
- If
- Continue until the search space is narrowed down to one element, which is a peak.
- Why It Works:
- Because of the way peaks are defined and the guarantee that
nums[-1]
andnums[n]
are negative infinity, a binary search approach can safely move toward the direction of a peak.
- Because of the way peaks are defined and the guarantee that
Pseudocode
left = 0, right = n - 1
while left < right:
mid = (left + right) // 2
if nums[mid] > nums[mid + 1]:
right = mid
else:
left = mid + 1
return left
Detailed Walkthrough (Visual Example)
Consider the input nums = [1,2,3,1]
:
Step | left | right | mid | Comparison | Decision |
---|---|---|---|---|---|
Initialization | 0 | 3 | — | — | — |
Iteration 1 | 0 | 3 | 1 | Compare 2 and 3 | Since 2 < 3 , set left = mid + 1 (left becomes 2) |
Iteration 2 | 2 | 3 | 2 | Compare 3 and 1 | Since 3 > 1 , set right = mid (right becomes 2) |
Termination | 2 | 2 | — | — | Return left (index 2) |
The element at index 2 is 3
, which is a peak.
Code Implementations
Python Code
Python3
Python3
. . . .
Java Code
Java
Java
. . . .
Complexity Analysis
-
Time Complexity:
- Brute Force (Linear Scan): O(n) in the worst case.
- Binary Search (Optimal): O(log n) because the search space is halved with each iteration.
-
Space Complexity:
- Both approaches use O(1) additional space.
Common Mistakes & Edge Cases
Common Mistakes
- Boundary Conditions:
- Not handling the first and last elements correctly.
- Off-by-one errors in binary search implementation.
- Incorrect Assumptions:
- Assuming that the global maximum is required, whereas any local peak is acceptable.
Edge Cases
- Single Element Array:
- The only element is automatically a peak.
- Strictly Increasing or Decreasing Array:
- In a strictly increasing array, the last element is a peak.
- In a strictly decreasing array, the first element is a peak.
Alternative Variations and Related Problems
Variations
- Find All Peak Elements:
- Instead of returning one peak, you might be asked to return indices of all peaks in the array.
- Finding Valleys:
- A variation could involve finding a valley (an element strictly less than its neighbors).
Related Problems for Further Practice
- Search in Rotated Sorted Array
- Longest Increasing Subsequence
- Container With Most Water
TAGS
LeetCode
CONTRIBUTOR
Design Gurus Team
-
GET YOUR FREE
Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Related Courses
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.

Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.