摘要: 今天是第四十四天,继续动态规划 518. 零钱兑换 II class Solution { public int change(int amount, int[] coins) { int n = coins.length; int[] dp = new int[amount+1]; dp[0] = 阅读全文
posted @ 2022-11-25 15:32 小猫Soda 阅读(18) 评论(0) 推荐(0)