Back to course home
0% completed
Vote For New Content
Solution: Buildings With an Ocean View
Problem Statement
You are given an array heights of size n, representing the heights of n buildings.
The ocean is to the right of these buildings. A building has an ocean view if there are no taller buildings to its right.
The task is to find the indices(0-based) of all such buildings with an ocean view.
Examples
-
Example 1:
- Input:
[4, 3, 2, 1] - Expected Output:
[0, 1, 2, 3] - Justification: Each building is shorter than the one to its left, hence all have an ocean view.
- Input:
-
Example 2:
- Input:
[2, 3, 1, 4]
- Input:
.....
.....
.....
Like the course? Get enrolled and start learning!