摘要: 动态规划问题,稍后更新思路 进行空间压缩: python class Solution(object): def coinChange(self, coins, amount): """ :type coins: List[int] :type amount: int :rtype: int """ 阅读全文
posted @ 2019-08-13 20:59 Dolisun 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: 思路:跟上一篇的之字形打印思路类似,只不过不用隔层翻转打印 阅读全文
posted @ 2019-08-13 08:50 Dolisun 阅读(231) 评论(0) 推荐(0) 编辑