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

add solution #5126

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion src/calculateRentalCost.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,22 @@
* @return {number}
*/
function calculateRentalCost(days) {
// write code here
const RENT_COST = 40;

const SHORT_TERM = 3;
const SHORT_TERM_DISCOUNT = 20;
const LONG_TERM = 7;
const LONG_TERM_DISCOUNT = 50;

if (days < LONG_TERM && days >= SHORT_TERM) {
return RENT_COST * days - SHORT_TERM_DISCOUNT;
}

if (days >= LONG_TERM) {
return RENT_COST * days - LONG_TERM_DISCOUNT;
Comment on lines +18 to +19

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The current logic applies only the long-term discount for rentals of 7 or more days. According to the task requirements, both the short-term and long-term discounts should be applied cumulatively when the rental period is 7 or more days. Consider adjusting the logic to ensure both discounts are applied.

}

return RENT_COST * days;
}

module.exports = calculateRentalCost;
Loading