码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode128

时间:2019-03-04 20:52:32      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:etc   col   span   sel   stc   cut   ==   code   ges   

 1 class Solution:
 2     def longestConsecutive(self, nums: List[int]) -> int:
 3         if len(nums)<=1:
 4             return len(nums)
 5 
 6         nums2 = sorted(set(nums))
 7         pre = nums2[0]
 8         maxc = 0
 9         curc = 1
10         for i in range(1,len(nums2)):
11             if nums2[i] == pre + 1:
12                 curc += 1
13             else:
14                 maxc = max(maxc,curc)
15                 curc = 1
16             pre = nums2[i]
17         return max(maxc,curc)

 

leetcode128

标签:etc   col   span   sel   stc   cut   ==   code   ges   

原文地址:https://www.cnblogs.com/asenyang/p/10472795.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!