LeetCode https://leetcode.cn/problems/container-with-most-water/
题目描述
给定一个长度为n的整数数组height。有n条垂线,第i条线的两个端点是 (i, 0)
和 (i, height[i])
。
找出其中的两条线,使得它们与x轴共同构成的容器可以容纳最多的水。
返回容器可以储存的最大水量。
说明:你不能倾斜容器。
思路
双指针左右移动, 然后求面积即可
思路
1 | class Solution { |
LeetCode https://leetcode.cn/problems/container-with-most-water/
给定一个长度为n的整数数组height。有n条垂线,第i条线的两个端点是 (i, 0)
和 (i, height[i])
。
找出其中的两条线,使得它们与x轴共同构成的容器可以容纳最多的水。
返回容器可以储存的最大水量。
说明:你不能倾斜容器。
双指针左右移动, 然后求面积即可
1 | class Solution { |