Coin change problem with infinite number of coins of each denomination
I want to know the idea of algorithm for the coin change problem where each denomination has infinte number of coins. Means how to apply DP (like the standard coin change problem) For e.g in set 1,10,15, change for 35 gives--2 coins of 10 and one coin of 15 Also give me an idea of brute forcing algorithm for this. I know to iterate ove...