Skip to content

Commit 77e3381

Browse files
committed
add: line break
1 parent 9d9bfa6 commit 77e3381

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contains-duplicate/JiHyeonSu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# 시간복잡도 및 공간복잡도 O(n)
33
class Solution:
44
def containsDuplicate(self, nums: List[int]) -> bool:
5-
return len(nums) != len(set(nums))
5+
return len(nums) != len(set(nums))

0 commit comments

Comments
 (0)