38.报数

Posted wjzheng

tags:

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

class Solution:
    def countAndSay(self, n: int) -> str:
        seq = "1"
        for i in range(n-1):
            seq = self.getNext(seq)
        return seq
        
    def getNext(self, seq):
        i, next_seq = 0, ‘‘
        while i < len(seq):
            count = 1
            while i+1 <len(seq) and seq[i] == seq[i+1]:
                count += 1
                i += 1
            next_seq += str(count) + seq[i]
            i += 1
        return next_seq

 

以上是关于38.报数的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode38.报数

LeetCode 38. 报数

leetcode算法-简单38. 报数

LeetCode刷题记录_38. 报数

38. 报数

38.报数