diff --git a/NeetCodeRoadmap/Two_Pointers/11_Container_With_Most_Water.py b/NeetCodeRoadmap/Two_Pointers/11_Container_With_Most_Water.py new file mode 100644 index 0000000..baac1d9 --- /dev/null +++ b/NeetCodeRoadmap/Two_Pointers/11_Container_With_Most_Water.py @@ -0,0 +1,5 @@ +def maxArea(self, height): + """ + :type height: List[int] + :rtype: int + """ \ No newline at end of file