Skip to content

LcLogNov24

Coin Change - bottom-up-DP - med

  • from bottom to up to calculate value of each amount
  • if up to bottom, we need to recalculate many same values Python def coinChange(self, coins: List[int], amount: int) -> int: dp = [amount + 1] * (amount +1) dp[0] = 0 for i in range(1, amount+1): for c in coins: if i - c >= 0: dp[i] = min(dp[i], 1+dp[i - c]) return dp[amount] if dp[amount] != amount+1 else -1