Skip to content

Commit 95d2080

Browse files
committed
add lines
1 parent aa6d6a9 commit 95d2080

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

container-with-most-water/liza0525.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ def maxArea(self, height: List[int]) -> int:
6161
curr_area = min(height[start], height[end]) * (end - start)
6262
max_area = max(max_area, curr_area)
6363

64-
return max_area
64+
return max_area

design-add-and-search-words-data-structure/liza0525.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ def _search(curr_dict, word):
7777
# Your WordDictionary object will be instantiated and called as such:
7878
# obj = WordDictionary()
7979
# obj.addWord(word)
80-
# param_2 = obj.search(word)
80+
# param_2 = obj.search(word)

0 commit comments

Comments
 (0)