-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsolution.js
35 lines (27 loc) · 1.03 KB
/
solution.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const howManyReindeers = (reindeerTypes, gifts) => {
const reindeerTypesCopy = reindeerTypes.map(reindeerType => ({ ...reindeerType }));
const distributeReindeers = giftWeight => {
const allowedReindeerTypes = reindeerTypesCopy.filter(({ weightCapacity }) => weightCapacity < giftWeight);
let totalWeightCapacity = allowedReindeerTypes.reduce(
(capacity, { weightCapacity }) => capacity + weightCapacity,
0
);
return allowedReindeerTypes.map(({ weightCapacity, type }) => {
const reindeersNumber = Math.floor(giftWeight / totalWeightCapacity);
giftWeight -= reindeersNumber * weightCapacity;
totalWeightCapacity -= weightCapacity;
return {
type,
num: reindeersNumber
};
});
};
reindeerTypesCopy.sort((reindeerTypeA, reindeerTypeB) => {
return reindeerTypeB.weightCapacity - reindeerTypeA.weightCapacity;
});
return gifts.map(({ country, weight }) => ({
country,
reindeers: distributeReindeers(weight)
}));
};
export { howManyReindeers };