求盛最多水的容器

Posted cynthia-wuqian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求盛最多水的容器相关的知识,希望对你有一定的参考价值。

技术分享图片

 

 

/**
 * @param {number[]} height
 * @return {number}
 */
var maxArea = function(height) {
    let maxarea = 0
    for(let i=0;i<height.length; i++){
        for(let j=height.length-1; j>=0; j--){
            maxarea = Math.max(maxarea,Math.min(height[i],height[j])*((i-j)>0?(i-j):(j-i)))
        }
    }
    return maxarea
};

 

以上是关于求盛最多水的容器的主要内容,如果未能解决你的问题,请参考以下文章

11. 盛最多水的容器

11. 盛最多水的容器

11. 盛最多水的容器

LeetCode11-盛最多水的容器

LeetCode 11. 盛最多水的容器

11. 盛最多水的容器