(height, left, right)
| 82 | const hasNewMax = (max, height) => max < height; |
| 83 | |
| 84 | const getHeights = (height, left, right) => [height[left], height[right]]; |
| 85 | |
| 86 | const getWindows = (height, left, maxLeft, right, maxRight) => { |
| 87 | const [leftHeight, rightHeight] = getHeights(height, left, right); |
no outgoing calls
no test coverage detected