-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
31 lines (27 loc) · 957 Bytes
/
index.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
function carryGifts(gifts, maxWeight) {
let bag = '';
let currentNumber = maxWeight;
let bagArray = [];
for (let i = 0; i < gifts.length; i++) {
// Si la palabra es mayor a la capacidad skipeo el proceso
if (gifts[i].length > maxWeight) continue;
// Si el regalo es mayor a la capacidad restanto
// Inserto lo que tenga en el temporal bag y vacio el temporal
// Reinicio el contador de peso dado que ya no cabe más
if (gifts[i].length > currentNumber) {
bagArray.push(bag.trim());
currentNumber = maxWeight;
bag = '';
}
// Añado al temporal el regalo actual y un espacio
// Resto a mi espacio restante la longitud del regalo
bag += gifts[i] + ' ';
currentNumber -= gifts[i].length;
}
// Si la bolsa no esta vacia añado al arreglo lo que tiene
// Reseteo el contador de peso dado que ya no cabe más
if (bag != '') {
bagArray.push(bag.trim());
}
return bagArray;
}