码迷,mamicode.com
首页 > 其他好文 > 详细

Count and Say

时间:2019-05-01 13:48:48      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:str   inf   .com   code   out   python   range   strong   while   

问题:

技术图片

解决思路:从1到n,按照规则循环读取即可

Python代码:

class Solution(object):
    def countAndSay(self, n):
        """
        :type n: int
        :rtype: str
        """
        s = "1"
        i = 1
        while i < n:
            s = self.read(s)
            i += 1
        return s
        
    def read(self,s):
        count = 0
        out_s = ""
        for i in range(len(s)):
            if i == 0:
                count += 1
            elif i > 0 and s[i] == s[i-1]:
                count += 1
            else:
                out_s += str(count)+s[i-1]
                count = 1
        return out_s + str(count) + s[i]
        

 

Count and Say

标签:str   inf   .com   code   out   python   range   strong   while   

原文地址:https://www.cnblogs.com/wenqinchao/p/10799464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!