LeetCode 11 盛最多水的容器

Posted Starzkg

tags:

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

https://leetcode-cn.com/problems/container-with-most-water/

解决方案

class Solution {
    public int maxArea(int[] height) {
        int l = 0, r = height.length - 1;
        int ans = 0;
        while (l < r) {
            ans = Math.max(ans, (r - l) * Math.min(height[l], height[r]));
            if (height[l] < height[r]) {
                l++;
            } else {
                r--;
            }
        }
        return ans;
    }
}

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

LeetCode 11. 盛最多水的容器

LeetCode:盛最多水的容器11

算法leetcode|11. 盛最多水的容器(rust重拳出击)

算法leetcode|11. 盛最多水的容器(rust重拳出击)

LeetCode 11 盛最多水的容器

[leetcode] 11.盛最多水的容器