-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path128LongestConsecutiveSequence.py
51 lines (47 loc) · 1.34 KB
/
128LongestConsecutiveSequence.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
39
40
41
42
43
44
45
46
47
48
49
50
51
class Solution(object):
def longestConsecutive(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
visited = set()
maxLen = 0
for i in nums:
if i in visited:
continue
currLen = 1
up = i + 1
if up in nums:
while True:
if up in nums:
currLen += 1
visited.add(up)
else:
break
up += 1
down = i - 1
if down in nums:
while True:
if down in nums:
currLen += 1
visited.add(down)
else:
break
down -= 1
maxLen = max(maxLen, currLen)
return maxLen
def longestConsecutive2(self, nums):
maxLen = 0
nums = set(nums)
for i in nums:
if i - 1 in nums:
continue
currLen = 1
while i + 1 in nums:
currLen += 1
i += 1
maxLen = max(maxLen, currLen)
return maxLen
sol = Solution()
res = sol.longestConsecutive2([0,3,7,2,5,8,4,6,0,1])
print(res)