-
Notifications
You must be signed in to change notification settings - Fork 24
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
Find minimum number of coins required to make up a given value #56
Labels
Comments
yjlim5
added a commit
to yjlim5/algorithms
that referenced
this issue
Jun 1, 2017
yjlim5
added a commit
to yjlim5/algorithms
that referenced
this issue
Jun 2, 2017
yjlim5
added a commit
to yjlim5/algorithms
that referenced
this issue
Jun 4, 2017
…lude 1 as denomination
yjlim5
added a commit
to yjlim5/algorithms
that referenced
this issue
Jun 4, 2017
yjlim5
added a commit
to yjlim5/algorithms
that referenced
this issue
Jun 5, 2017
yjlim5
added a commit
to yjlim5/algorithms
that referenced
this issue
Jun 5, 2017
yjlim5
added a commit
to yjlim5/algorithms
that referenced
this issue
Jun 5, 2017
…lude 1 as denomination
yjlim5
added a commit
to yjlim5/algorithms
that referenced
this issue
Jun 5, 2017
yjlim5
added a commit
that referenced
this issue
Jun 5, 2017
Solution and test for #56 find minimum number of coins
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Input: An array of coin denominations (1 will always be included), a number
Output: minimum number of coins required to make up the given value
Input: [1, 5,10,25], 100
Output: 4
The text was updated successfully, but these errors were encountered: