Search posts, tags, users, and pages
Tapan Rachchh
class 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] ...
No responses yet.