摘要: class Solution(object): def countAndSay(self, n): """ :type n: int :rtype: str """ s=[] for i in range(n): if i==0: s.a... 阅读全文
posted @ 2017-12-18 09:43 PirateLHX 阅读(120) 评论(0) 推荐(0)