-
Notifications
You must be signed in to change notification settings - Fork 0
/
217.py
38 lines (34 loc) · 910 Bytes
/
217.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
class Solution(object):
def containsDuplicate(self, nums):
"""
:type nums: List[int]
:rtype: bool
"""
for i in range(1,len(nums)):
key = nums[i]
j=i-1
while j>=0:
if key==nums[j]:
return True
if key > nums[j]:
break
nums[j+1]=nums[j]
j=j-1
return False
class Solution(object):
def containsDuplicate(self, nums):
"""
:type nums: List[int]
:rtype: bool
"""
for i in range(1,len(nums)):
key = nums[i]
j=i-1
while j>=0:
if key==nums[j]:
return True
if key > nums[j]:
break
nums[j+1]=nums[j]
j=j-1
return False