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
/* | |
Given Brief | |
# Find a total ordered quantity of a product for every weekday | |
You are asked to improve the analytics of an e-commerce platform: calculating a total quantity of a given product ordered should be added. | |
# Task | |
Implement `OrdersAnalyzer.totalQuantity(orders, productId)` method which |
OlderNewer