def largestRectangleArea2(self, heights) -> int: """ 暴力法 O(N^2), 以 heights[i] 的高度为高,求左右满足的宽 """ lg = len(heights) &...