leetcode-11. 盛最多水的容器

var maxArea = function(height) {
    let max = Math.min(height[0],height[1])
    for(let i=2;i

你可能感兴趣的:(javascript,数据结构和算法)