Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added Coin Change Problem Code #201

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CoinChange.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
* What is Coin Change Problem?
* - We find the number of ways to make change for a specific amount of money using a given set of coin denominations.
*
* - Given : (Denominations) and (Amount to Generate)
*/

public class CoinChange {

public static int coinChangeWays(int[] coins, int amount) {
int[] dp = new int[amount + 1];
dp[0] = 1; // There is one way to make change for 0.

for (int coin : coins) {
for (int i = coin; i <= amount; i++) {
dp[i] += dp[i - coin];
}
}

return dp[amount];
}

public static void main(String[] args) {
int[] coins = {1, 2, 5}; // Coin Denominations
int amount = 5; // Amount to make

int ways = coinChangeWays(coins, amount);
System.out.println("Number of ways to make change: " + ways);
}
}