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 33de329 commit bcfdf69Copy full SHA for bcfdf69
contains-duplicate/hestia-park.py
@@ -1,3 +1,5 @@
1
class Solution:
2
def containsDuplicate(self, nums: List[int]) -> bool:
3
- return len(nums) != len(set(nums))
+ return len(nums) != len(set(nums))
4
+
5
0 commit comments