Chetan Dattachetan77.hashnode.dev·Aug 15, 202484. Largest Rectangle in HistogramGiven an array of integers heights representing the histogram's bar height where the width of each bar is 1, return the area of the largest rectangle in the histogram. (link) Example 1: Input: heights = [2,1,5,6,2,3] Output: 10 Explanation: The abov...DiscussLeetcodelargest-rectangle-in-histogram