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 53ce7c7 commit c11f3deCopy full SHA for c11f3de
contains-duplicate/devyejin.py
@@ -0,0 +1,4 @@
1
+class Solution(object):
2
+ def containsDuplicate(self, nums):
3
+ return len(nums) != len(set(nums)):wq
4
+ wq
0 commit comments