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

leetcode376

时间:2019-06-11 16:17:23      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:sel   ret   col   maxlength   int   list   tco   style   bsp   

 1 class Solution:
 2     def wiggleMaxLength(self, nums: List[int]) -> int:
 3         n = len(nums)
 4         if n == 0:
 5             return 0
 6         up,down = 1,1
 7         for i in range(1,n):
 8             if nums[i] > nums[i-1]:
 9                 up = down + 1
10             elif nums[i] < nums[i-1]:
11                 down = up + 1
12         return max(up,down)

 

leetcode376

标签:sel   ret   col   maxlength   int   list   tco   style   bsp   

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

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