Skip to content

Commit de91997

Browse files
committed
contains-duplicate solution
1 parent b064d08 commit de91997

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

contains-duplicate/HYUNAHKO.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ def containsDuplicate(self, nums: List[int]) -> bool:
77
if src == nums[j]:
88
return True
99
return False
10-
return False
10+
return False
11+

0 commit comments

Comments
 (0)