FromLeetcodeStatusACDateMay 28, 2024Tags双指针Difficulty中等Linkhttps://leetcode.cn/problems/container-with-most-water/description/?envType=study-plan-v2&envId=top-100-liked题面给定一个长度为 n 的整数数组 height 。有 n 条垂线,第 i 条线的两个端点是 (i, 0) 和 (i, height[i]) 。找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。返回容器可以储存的最大水量。说明:你不能倾斜容器。示例 1:示例 2:提示:n == height.length2 <= n <= 1050 <= height[i] <= 104 思路 题解