11. Container With Most Water
https://leetcode.com/problems/container-with-most-water/
brute force
i 對 其他所有, 一一球出面積, 取 max
2. two points
2者其一如果高是小的話, 要往中間逼近, 為了找更大的
j - i + 1 是因為前面有做 i++, j--, 無論哪個, 都是+1
Last updated
https://leetcode.com/problems/container-with-most-water/
brute force
i 對 其他所有, 一一球出面積, 取 max
2. two points
2者其一如果高是小的話, 要往中間逼近, 為了找更大的
j - i + 1 是因為前面有做 i++, j--, 無論哪個, 都是+1
Last updated