摘要: 双指针 思路: 一个指针负责遍历,另一个指针负责记录,遇到不同值时更新状态。 class Solution: def countAndSay(self, n: int) -> str: def getResult(para:str)->str: record = para[len(para)-1] 阅读全文
posted @ 2020-05-20 13:15 nil_f 阅读(142) 评论(0) 推荐(0) 编辑