Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4500068

Browse files
author
Khanh Do
committed
Use == instead of =
1 parent a282590 commit 4500068

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

0011-container-with-most-water.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ def main():
3535

3636

3737
corner_cases = [
38-
([], None), # len(heights) = 0
39-
([8], None), # len(heights) = 1
38+
([], None), # len(heights) == 0
39+
([8], None), # len(heights) == 1
4040
]
4141

4242
for heights, ans in corner_cases:

0 commit comments

Comments
 (0)