leetcode-11.水を最も多く入れる容器
336 ワード
var maxArea = function(height) {
let max = Math.min(height[0],height[1])
for(let i=2;i
var maxArea = function(height) {
let max = Math.min(height[0],height[1])
for(let i=2;i