博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode Count and Say python
阅读量:5217 次
发布时间:2019-06-14

本文共 597 字,大约阅读时间需要 1 分钟。

class Solution(object):    def countAndSay(self, n):        """        :type n: int        :rtype: str        """        s='1'        for i in range(2,n+1):            s=self.count(s)        return s    def count(self,s):        t='';count=0;curr='#'        for i in s:            if i != curr:                if curr != '#':                    t+=str(count)+curr                curr=i                count=1            else:                count+=1        t+=str(count)+curr        return t

@link http://www.cnblogs.com/zuoyuan/p/3781329.html

转载于:https://www.cnblogs.com/allenhaozi/p/5060774.html

你可能感兴趣的文章
php7 新特性整理
查看>>
RabbitMQ、Redis、Memcache、SQLAlchemy
查看>>
linux查看端口占用
查看>>
hdu - 1226 超级密码 (bfs)
查看>>
Qt重写paintEvent方法遇到的问题
查看>>
Sql常见面试题 受用了
查看>>
知识不是来炫耀的,而是来分享的-----现在的人们却…似乎开始变味了…
查看>>
CSS背景颜色、背景图片、平铺、定位、固定
查看>>
口胡:[HNOI2011]数学作业
查看>>
我的第一个python web开发框架(29)——定制ORM(五)
查看>>
中国剩余定理
查看>>
基础笔记一
查看>>
uva 10137 The trip
查看>>
Count Numbers
查看>>
编写高质量代码改善C#程序的157个建议——建议110:用类来代替enum
查看>>
网卡bond技术
查看>>
UITabbarController的UITabbarItem(例:"我的")点击时,判断是否登录
查看>>
UNIX基础知识之输入和输出
查看>>
【洛谷 P1666】 前缀单词 (Trie)
查看>>
对称加密和非对称加密
查看>>