Skip to content

Commit ba88544

Browse files
committed
Fix: contains-duplicate 누락 개행 추가
1 parent 1bd28b2 commit ba88544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contains-duplicate/oddong.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class Solution:
22
def containsDuplicate(self, nums: List[int]) -> bool:
3-
return len(nums) != len(set(nums))
3+
return len(nums) != len(set(nums))

0 commit comments

Comments
 (0)