We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e75a09 commit 0f293c8Copy full SHA for 0f293c8
src/main/python/g0001_0100/s0011_container_with_most_water/Solution0011.py
@@ -2,6 +2,8 @@
2
# #LeetCode_75_Two_Pointers #Algorithm_II_Day_4_Two_Pointers #Top_Interview_150_Two_Pointers
3
# #Big_O_Time_O(n)_Space_O(1) #2025_07_22_Time_68_ms_(91.16%)_Space_28.60_MB_(23.78%)
4
5
+from typing import List
6
+
7
class Solution:
8
def maxArea(self, height: List[int]) -> int:
9
max_area = -1
0 commit comments