leetcode 刷题 38 39

class Solution: def countAndSay(self, n: int) -> str: """ :type n: int :rtype: str """ if n<=1: return '1' pre_seq = self.c
相关文章
相关标签/搜索