Skip to content

Commit 0f293c8

Browse files
committed
Improved task 11
1 parent 8e75a09 commit 0f293c8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/python/g0001_0100/s0011_container_with_most_water/Solution0011.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# #LeetCode_75_Two_Pointers #Algorithm_II_Day_4_Two_Pointers #Top_Interview_150_Two_Pointers
33
# #Big_O_Time_O(n)_Space_O(1) #2025_07_22_Time_68_ms_(91.16%)_Space_28.60_MB_(23.78%)
44

5+
from typing import List
6+
57
class Solution:
68
def maxArea(self, height: List[int]) -> int:
79
max_area = -1

0 commit comments

Comments
 (0)