Skip to content

Feat : Coin-Change#201

Open
Suryac72 wants to merge 2 commits intoTheAlgorithms:masterfrom
Suryac72:coin-change
Open

Feat : Coin-Change#201
Suryac72 wants to merge 2 commits intoTheAlgorithms:masterfrom
Suryac72:coin-change

Conversation

@Suryac72
Copy link
Copy Markdown
Contributor

@Suryac72 Suryac72 commented Oct 14, 2023

Coin Change problem implementation using Tabulation DP
Hi @raklaptudirm @appgurueu please review this PR

Copy link
Copy Markdown
Contributor

@appgurueu appgurueu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Otherwise looks fine.

Comment thread dynamic_programming/coin_change.ts Outdated
* Calculates the number of ways to make a target amount using given coin denominations.
*
* @param coins - An array of coin denominations.
* @param numCoins - The number of different coin denominations.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this parameter? Seems redundant with coins.length.

*/
export function coinChange(coins: number[], numCoins: number, targetAmount: number): number {

const dp: number[] = new Array(targetAmount + 1).fill(0);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please give this a more fitting name, such as numberOfWays, or simply ways, something in that direction, which characterizes what dp[i] stores (the number of ways to represent i using the coins).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants