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

Feat : Coin-Change #201

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

Suryac72
Copy link
Contributor

@Suryac72 Suryac72 commented Oct 14, 2023

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

Copy link
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.

* 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
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
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.

None yet

2 participants