leetcode1375

Posted AsenYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1375相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

洛谷—— P1375 小猫

P1375 小猫(二飞的小憨猫)

优化预测基于matlab天牛须算法优化ELMAN神经网络预测含Matlab源码 1375期

优化预测基于matlab天牛须算法优化ELMAN神经网络预测含Matlab源码 1375期

洛谷——P1375 小猫

JZYZOJ 1375 双亲数 莫比乌斯反演