-
-
Notifications
You must be signed in to change notification settings - Fork 554
New Exercise book-store #465
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
Changes from 19 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
fc2f3c2
Create harry-potter
rpottsoh cd400f1
Merge pull request #1 from rpottsoh/rpottsoh-patch-1
rpottsoh eac9f63
Create description.md
rpottsoh 4421deb
Merge pull request #2 from rpottsoh/rpottsoh-patch-1
rpottsoh b7a263d
Delete description.md
rpottsoh 5b53197
Delete harry-potter
rpottsoh f5ecac4
Create description.md
rpottsoh ab3c6f1
Create metadata.yml
rpottsoh 34e908a
Incorparted description information from cyber-dojo
rpottsoh 3ea936a
updated meta data
rpottsoh b05216f
Made blurb generic
rpottsoh c3e2244
Removed Harry Potter References
rpottsoh 9f18d96
Renamed exercise
rpottsoh 9a7e7fe
Added canonical data
rpottsoh 611ea3a
Corrected formatting error
rpottsoh d58666e
Added missing comma
rpottsoh 3d70586
Removed canonical-data.json
rpottsoh 71d61f1
Added some formatting
rpottsoh 37b0fe8
Rewording Description
rpottsoh 2858c29
Update description.md
rpottsoh 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
To try and encourage more sales of the 5 different books | ||
they sell of a popular series, a bookshop has decided to | ||
offer discounts of multi-book purchases. | ||
|
||
One copy of any of the five books costs $8. | ||
|
||
If, however, you buy two different books, you get a 5% | ||
discount on those two books. | ||
|
||
If you buy 3 different books, you get a 10% discount. | ||
|
||
If you buy 4 different books, you get a 20% discount. | ||
|
||
If you buy all 5, you get a 25% discount. | ||
|
||
Note: that if you buy four books, of which 3 are | ||
different titles, you get a 10% discount on the 3 that | ||
form part of a set, but the fourth book still costs $8. | ||
|
||
Your mission is to write a piece of code to calculate the | ||
price of any conceivable shopping basket (containing only | ||
books of the same series), giving as big a discount as | ||
possible. | ||
|
||
For example, how much does this basket of books cost? | ||
|
||
- 2 copies of the first book | ||
- 2 copies of the second book | ||
- 2 copies of the third book | ||
- 1 copy of the fourth book | ||
- 1 copy of the fifth book | ||
|
||
One way of grouping these 8 books is: | ||
|
||
- 1 group of 5 --> 25% discount (1st,2nd,3rd,4th,5th) | ||
- +1 group of 3 --> 10% discount (1st,2nd,3rd) | ||
|
||
This would give a total of: | ||
|
||
- 5 books at a 25% discount | ||
- +3 books at a 10% discount | ||
|
||
Resulting in: | ||
|
||
- 5 x (8 2.00) == 5 x 6.00 == $30.00 | ||
- +3 x (8 0.80) == 3 x 7.20 == $21.60 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also missing minus sign, should be |
||
|
||
For a total of $51.60 | ||
|
||
However, a different way to group these 8 books is: | ||
|
||
- 1 group of 4 books --> 20% discount (1st,2nd,3rd,4th) | ||
- +1 group of 4 books --> 20% discount (1st,2nd,3rd,5th) | ||
|
||
This would give a total of: | ||
|
||
- 4 books at a 20% discount | ||
- +4 books at a 20% discount | ||
|
||
Resulting: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should this be "Resulting in" instead of just "Resulting"? |
||
|
||
- 4 x (8-1.60) == 4 x 6.40 == $25.60 | ||
- +4 x (8-1.60) == 4 x 6.40 == $25.60 | ||
|
||
For a total of $51.20 | ||
|
||
And $51.20 is the price with the biggest discount. |
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,4 @@ | ||
--- | ||
blurb: "To try and encourage more sales of different books from a popular 5 book series, a bookshop has decided to offer discounts of multiple-book purchases." | ||
source: "Inspired by the harry potter kata from Cyber-Dojo." | ||
source_url: "http://cyber-dojo.org" |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing minus signs, the
(8 2.00)
doesn't look right