Skip to content

Commit c095286

Browse files
committed
🐛 lineBreak 재시도
1 parent a4213be commit c095286

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contains-duplicate/codyman0.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
# Time complexity : O(n)
6-
#
6+
77

88
class Solution:
99
def containsDuplicate(self, nums: List[int]) -> bool:
@@ -13,4 +13,4 @@ def containsDuplicate(self, nums: List[int]) -> bool:
1313
return False
1414
if sortedArray[i] == sortedArray[i + 1] :
1515
return True
16-
return False
16+
return False

0 commit comments

Comments
 (0)