Tapan Rachchhtapanrachchh.hashnode.devยทOct 26, 202411. Container With Most Waterclass Solution: def maxArea(self, height: List[int]) -> int: x = 0 l = len(height) y = l - 1 maxWater = 0 for gap in range(l - 1, 0, -1): xVal = height[x] yVal = height[y] ...PythonAdd a thoughtful commentNo comments yetBe the first to start the conversation.