Largest Rectangle in Histogram
Understand how to solve the largest rectangle in histogram problem by analyzing the heights array. Learn to implement an optimal O(n) time solution and practice efficient coding techniques relevant to coding interviews.
We'll cover the following...
We'll cover the following...
Statement
Given an array of integers, heights, that represents the heights of bars in a histogram, find the area of the largest rectangle in the histogram, where the rectangle has a constant width of unit for each bar.
Constraints