【leetcode系列】【py3】【簡單】外觀數列

題目: 原題鏈接: https://leetcode-cn.com/problems/count-and-say/   解題思路: 第一行已知爲'1' 從第二行開始,遞歸遍歷處理上一行字符串 直到第n行   代碼實現: class Solution:     def countAndSay(self, n: int) -> str:         result_str, floor = '1',
相關文章
相關標籤/搜索