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

leetcode1375

时间:2020-03-08 13:40:11      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:数组   ble   ems   time   ==   str   sel   space   leetcode   

1 class Solution:
2     def numTimesAllBlue(self, light: List[int]) -> int:
3         right,res = 0,0
4         for i, a in enumerate(light, start=1):
5             right = max(right, a)
6             if right == i:
7                 res += 1
8         return res

算法思路:数组。

参考:https://leetcode.com/problems/bulb-switcher-iii/discuss/532538/JavaC%2B%2BPython-Straight-Forward-O(1)-Space

leetcode1375

标签:数组   ble   ems   time   ==   str   sel   space   leetcode   

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

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