DSA
DSA copied to clipboard
Coin change Dynamic programming problem
Given a value N, if we want to make change for N cents, and we have a supply of each of C = { C1, C2, .. , Cm} valued coins, how many ways can we make the change if the order of coins doesn’t matter.
I would like to work on this in C++. Will you please assign it to me?
Given a value N, if we want to make change for N cents, and we have a supply of each of C = { C1, C2, .. , Cm} valued coins, how many ways can we make the change if the order of coins doesn’t matter.
I can provide its solution in Java.. can you assign me this?