Leetcode 696. Count Binary Substrings | | Leetcode 696. Count Binary Substrings 文章作者:Tyan博客:noahsnail.com | CSDN | 简书 1. Description 2. Solution Version 1 123456789101112131415class Solution: def countBinarySubstrings(self, s: str) -> int: length = len(s) count = 0 pre = 0 curr = 1 for i in range(1, length): if s[i] == s[i - 1]: curr += 1 else: count += min(pre, curr) pre = curr curr = 1 count += min(pre, curr) return count Reference https://leetcode.com/problems/count-binary-substrings/ 如果有收获,可以请我喝杯咖啡! 赏 微信打赏 支付宝打赏