leetcode-python3-1759. 统计同构子字符串的数目

https://leetcode-cn.com/problems/count-number-of-homogenous-substrings/icon-default.png?t=L892https://leetcode-cn.com/problems/count-number-of-homogenous-substrings/https://github.com/w5678/leetcode-2021icon-default.png?t=L892https://github.com/w5678/leetcode-2021

class Solution:
    def countHomogenous(self, s: str) -> int:
        if not s:
            return 0
        i,cnt=0,0
        last=s[0]
        inc=0
        while i <len(s):
            if last == s[i]:
                inc+=1
            else:
                inc=1
            last = s[i]
            i+=1
            cnt+=inc
        return cnt%((10**9)+7)

思路:
1,遍历所有的字符,保存上一个字符为last,与当前字符比较,如果相同则 inc++,否则inc=1 重新开始
2,cnt每次叠加inc
3,最后的返回值 取余数 %

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值