top of page
Caută

Coin Change in JAVA

  • Poza scriitorului: oanaunciuleanu
    oanaunciuleanu
  • 22 nov. 2022
  • 1 min de citit

You are given an integer array of coin values and an integer representing the total amount of money. Return the number of possible ways to change the money into coins.



Input: sum = 3, coins[] = {1,2,3} Output: 3 Explanation: There are 3 solutions: {1,1,1}, {1,2}, {3} Input: sum = 9, coins[] = {2,4,3,5} Output: 5 Explanation: There are 5 solutions: {2,2,2,3}, {3,3,3}, {4,2,3}, {4,5}, {2,2,5}


Solution:


1. public static int count(int[] coins, int sum) { 2. int[] table = new int[sum + 1]; 3. table[0] = 1; 4. for (int coin: coins) 5. for (int j = coin; j <= sum; j++) 6. table[j] += table[j - coin]; 7. 8. return table[sum]; 9. } 10.

Postări recente

Afișează-le pe toate
Weighted Job Scheduling in JAVA

You receive a list of jobs that have three elements: start time, finish time and profit. You have to schedule the jobs with no...

 
 
 
Tiling Problem in JAVA

You can use a board that is 2 x n size. The tiles are of size 2 x 1. Count the number of ways to tile the board. Tiles can be placed...

 
 
 

コメント


bottom of page