LeetCode/NeetCodeRoadmap/Two_Pointers/11_Container_With_Most_Water.py

5 lines
86 B
Python

def maxArea(self, height):
"""
:type height: List[int]
:rtype: int
"""