Skip to main content
Back to problems
#518
Medium Algorithms

Coin change ii

Array Dynamic Programming
60.4% acceptance
Feb 19, 2026
10180
240
You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money. Return the number of combinations that make up that amount. If that amount of money cannot be made up by any combination of the coins, return 0. You may assume that you have an infinite number of each kind of coin. The answer is guaranteed to fit into a signed 32-bit integer.

Solution

Rust
Time O(n²)
Space O(n)
LeetCode
solution.rs
impl Solution {
  pub fn change(amount: i32, coins: Vec<i32>) -> i32 {
    let amount = amount as usize;
    let mut dp = vec![0i32; amount + 1];
    dp[0] = 1;
    for coin in coins {
      let c = coin as usize;
      for j in c..=amount {
        dp[j] += dp[j - c];
      }
    }
    dp[amount]
  }
}