python实现 LeetCode36——Count and Say

count代表这个这个数一共有几个,利用count再加上这个位置的数,最终得到最后的结果


class Solution(object):
    def countAndSay(self, n):
        string='1'
        while n>1:
            string=self.countStr(string)
            n=n-1
        return string
    def countStr(self,string):
        result=''
        count = 1
        for i in range(len(string)):
            if i

你可能感兴趣的:(python学习,leetcode)