Container With Most Water - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 나의 풀이 public class Solution_ContainerWithMostWater { public int maxArea(int[] height) { int left = 0; int right = height.length - 1; int answer = calculateArea(height, left, right); while (left < right) { i..