摘要: 给定一个正整数 n ,输出外观数列的第 n 项。(前两个我写的,后面一个你猜,反正比我的好) class Solution(object): def countAndSay1(self, n): """ :type n: int :rtype: str """ if n == 1: return s 阅读全文
posted @ 2021-01-17 11:06 楠海 阅读(92) 评论(0) 推荐(0)