Skip to content

Commit e2b90ee

Browse files
committed
fix: 공백추가
1 parent 43a359e commit e2b90ee

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

container-with-most-water/Seoya0512.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ def maxArea(self, height: List[int]) -> int:
2323
j -= 1
2424

2525
return max_area
26+

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ def dfs(node, idx):
2525
return any(dfs(node[k], idx + 1) for k in node if k != "$")
2626
return False
2727
return dfs(self.root, 0)
28+

longest-increasing-subsequence/Seoya0512.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ def lengthOfLIS(self, nums: List[int]) -> int:
99
if nums[prev] < nums[cur]:
1010
dp[cur] = max(1+dp[prev], dp[cur])
1111
return max(dp)
12+

spiral-matrix/Seoya0512.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
3535
result.append(matrix[j].pop(0))
3636

3737
return result
38+

valid-parentheses/Seoya0512.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def isValid(self, s: str) -> bool:
1515
else:
1616
if not stack or val != parens[stack.pop()]:
1717
return False
18-
return not stack
18+
return not stack

0 commit comments

Comments
 (0)