class Solution: def prefixesDivBy5(self, A: List[int]) -> List[bool]: ans,t = [],0 for a in A: t = (t * 2 + a)%5 ans.append(False if t else True) return ans
原文地址:https://www.cnblogs.com/zywscq/p/10739388.html
时间: 2024-10-22 07:09:10
class Solution: def prefixesDivBy5(self, A: List[int]) -> List[bool]: ans,t = [],0 for a in A: t = (t * 2 + a)%5 ans.append(False if t else True) return ans
原文地址:https://www.cnblogs.com/zywscq/p/10739388.html