Skip to content

Instantly share code, notes, and snippets.

View dvnlgls's full-sized avatar
💭
Hitchhiking the cosmos with a towel in hand

Devin dvnlgls

💭
Hitchhiking the cosmos with a towel in hand
View GitHub Profile
@dvnlgls
dvnlgls / maxrect.js
Created April 20, 2019 23:17
Max rectangle in a histogram
// o(n)
// https://stackoverflow.com/a/26202717
// read this: https://stackoverflow.com/a/50651622/336431
function getMaxRect(heights) {
const stack = [];
let max = 0;
let i = 0;
while (i < heights.length) {