首页 > 代码库 > leetcode:Count and Say【Python版】
leetcode:Count and Say【Python版】
一次AC
字符串就是:count+char
1 class Solution: 2 # @return a string 3 def countAndSay(self, n): 4 str = "1" 5 for i in range(n-1): 6 tmp = str 7 str = "" 8 c = tmp[0] 9 cnt = 110 for j in range(1,len(tmp)):11 if tmp[j] == tmp[j-1]:12 cnt += 113 else:14 str += ("%d"%cnt + tmp[j-1])15 cnt = 116 str += ("%d"%cnt + tmp[len(tmp)-1])17 return str
leetcode:Count and Say【Python版】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。