-
-
Notifications
You must be signed in to change notification settings - Fork 49.3k
Create sol2.py #1876
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
Merged
Merged
Create sol2.py #1876
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7eba1dc
Create sol2.py
SandersLin dfb6bef
updating DIRECTORY.md
23ce85e
Update DIRECTORY.md
itsvinayak 186bc2e
updating DIRECTORY.md
86a5525
Update sol2.py
itsvinayak 4e79902
Update DIRECTORY.md
itsvinayak c144072
updating DIRECTORY.md
541a5e0
Improve docstrings
poyea File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| """ | ||
| Coin sums | ||
| Problem 31 | ||
| In England the currency is made up of pound, £, and pence, p, and there are | ||
| eight coins in general circulation: | ||
| 1p, 2p, 5p, 10p, 20p, 50p, £1 (100p) and £2 (200p). | ||
| It is possible to make £2 in the following way: | ||
| 1×£1 + 1×50p + 2×20p + 1×5p + 1×2p + 3×1p | ||
| How many different ways can £2 be made using any number of coins? | ||
| """ | ||
|
|
||
|
|
||
| def solution(pence): | ||
itsvinayak marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| """Returns the number of different ways to make X pence using any number of coins. solution is | ||
| based on dynamic programming paradigm in bottom up fashion. | ||
| >>> solution(500) | ||
| 6295434 | ||
| >>> solution(200) | ||
| 73682 | ||
| >>> solution(50) | ||
| 451 | ||
| >>> solution(10) | ||
| 11 | ||
| """ | ||
| coins = [1, 2, 5, 10, 20, 50, 100, 200] | ||
| number_of_ways = [0] * (pence + 1) | ||
| number_of_ways[0] = 1 # base case: 1 way to make 0 pence | ||
| for i in range(len(coins)): | ||
itsvinayak marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| for j in range(coins[i], pence + 1, 1): | ||
| number_of_ways[j] += number_of_ways[j - coins[i]] | ||
| return number_of_ways[pence] | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| assert solution(200) == 73682 | ||
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.
Uh oh!
There was an error while loading. Please reload this page.