We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e822ef commit 4b5ddb2Copy full SHA for 4b5ddb2
contains-duplicate/jongwanra.py
@@ -15,4 +15,5 @@
15
class Solution(object):
16
def containsDuplacate(self, nums):
17
num_set = set(nums)
18
- return len(num_set) != len(nums)
+ return len(num_set) != len(nums)
19
+
0 commit comments