Fix coin change#2571
Merged
Merged
Conversation
Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com>
Kush1101
reviewed
Oct 1, 2020
Member
Kush1101
left a comment
There was a problem hiding this comment.
Is it really a useful contribution?
poyea
requested changes
Oct 1, 2020
poyea
reviewed
Oct 1, 2020
Comment on lines
+22
to
+29
| >>> dp_count([1, 2, 3], -5) | ||
| 0 | ||
| >>> dp_count([4, 5, 6], -4) | ||
| 0 | ||
| >>> dp_count([2, 5, 3, 6], -10) | ||
| 0 | ||
| >>> dp_count([4], -4) | ||
| 0 |
Member
There was a problem hiding this comment.
Suggested change
| >>> dp_count([1, 2, 3], -5) | |
| 0 | |
| >>> dp_count([4, 5, 6], -4) | |
| 0 | |
| >>> dp_count([2, 5, 3, 6], -10) | |
| 0 | |
| >>> dp_count([4], -4) | |
| 0 | |
| >>> dp_count([1, 2, 3], -5) | |
| 0 |
I think 1 test case for this is enough.
Contributor
Author
There was a problem hiding this comment.
@poyea You said to add some more test cases in the previous comment?
Member
There was a problem hiding this comment.
I mean to test the < 0 line, one test case is enough. You may add some larger test cases too to demonstrate the correctness.
Member
|
Can you change the title of the pull request to something like |
Closed
Contributor
Author
|
@poyea done the changes have a look. |
poyea
approved these changes
Oct 23, 2020
stokhos
pushed a commit
to stokhos/Python
that referenced
this pull request
Jan 3, 2021
* Removed unused variable m. * Doctests are modified to match functions. * Added condition for negative values. * Fixed white-space around operator. * Fixed W293 blank line contains white-space error. * Update dynamic_programming/coin_change.py Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com> * Fixed error in code. * Fixed whited spacing. * Fixed PEP8 error. * Added more test cases for coin change problem. * Removed extra test for negetive value. Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com>
peRFectBeliever
pushed a commit
to peRFectBeliever/Python
that referenced
this pull request
Apr 1, 2021
* Removed unused variable m. * Doctests are modified to match functions. * Added condition for negative values. * Fixed white-space around operator. * Fixed W293 blank line contains white-space error. * Update dynamic_programming/coin_change.py Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com> * Fixed error in code. * Fixed whited spacing. * Fixed PEP8 error. * Added more test cases for coin change problem. * Removed extra test for negetive value. Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com>
Panquesito7
pushed a commit
to Panquesito7/Python
that referenced
this pull request
May 13, 2021
* Removed unused variable m. * Doctests are modified to match functions. * Added condition for negative values. * Fixed white-space around operator. * Fixed W293 blank line contains white-space error. * Update dynamic_programming/coin_change.py Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com> * Fixed error in code. * Fixed whited spacing. * Fixed PEP8 error. * Added more test cases for coin change problem. * Removed extra test for negetive value. Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com>
shermanhui
pushed a commit
to shermanhui/Python
that referenced
this pull request
Oct 22, 2021
* Removed unused variable m. * Doctests are modified to match functions. * Added condition for negative values. * Fixed white-space around operator. * Fixed W293 blank line contains white-space error. * Update dynamic_programming/coin_change.py Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com> * Fixed error in code. * Fixed whited spacing. * Fixed PEP8 error. * Added more test cases for coin change problem. * Removed extra test for negetive value. Co-authored-by: Tapajyoti Bose <44058757+ruppysuppy@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe your change:
Removed unused variable and modified code for coin_chainge algo.
Checklist:
Fixes: #{$ISSUE_NO}.