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
相關文章
相關標籤/搜索