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 9d9bfa6 commit 77e3381Copy full SHA for 77e3381
contains-duplicate/JiHyeonSu.py
@@ -2,4 +2,4 @@
2
# 시간복잡도 및 공간복잡도 O(n)
3
class Solution:
4
def containsDuplicate(self, nums: List[int]) -> bool:
5
- return len(nums) != len(set(nums))
+ return len(nums) != len(set(nums))
0 commit comments