Skip to content

Commit bcfdf69

Browse files
committed
add newline A solution for Contains Duplicate DaleStudy#217
1 parent 33de329 commit bcfdf69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

contains-duplicate/hestia-park.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
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))
4+
5+

0 commit comments

Comments
 (0)