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

Solution #5191

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Dariya-Goncharovskaya
Copy link

No description provided.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

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

Your implementation of the calculateRentalCost function is well-structured and meets the task requirements effectively! 🎉 The use of descriptive names and constants is excellent, ensuring clarity and maintainability. The logic for applying discounts is correct, assuming the intention is to apply only one discount based on the rental period. If you intended to apply both discounts for longer rentals, you might want to adjust the logic. Keep up the great work, and consider this small tweak if it aligns with your goals! 😊

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

Comment on lines +15 to +21
if (days >= LONG_TERM) {
return basePrice - LONG_TERM_DISCOUNT;
}

if (days >= SHORT_TERM) {
return basePrice - SHORT_TERM_DISCOUNT;
}

Choose a reason for hiding this comment

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

The current logic applies a long-term discount if the rental period is 7 days or more, and a short-term discount if it is 3 days or more. However, this means that a rental period of 7 days will only receive the long-term discount, not both. If this is intended, the logic is correct. Otherwise, consider revising the logic to apply both discounts if applicable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants