"Train" JavaScript Fundamentals
Здравейте. Може ли някой да ми обясни защо като се опитам да запазя всеки елемент от масива в променлива не ги събира и масива си остава същия? Единствената разлика, е че просто запазвам всеки един вагон в променлива.
Задачата е "Train". Задача номер 1 от Arrays Advanced Exercise JavaScript Fundamentals.
Условие:
You will be given an array of strings.
The first element will be a string containing wagons (numbers). Each number inside the string represents the number of passengers that are currently in a wagon.
The second element in the array will be the max capacity of each wagon (single number).
The rest of the elements will be commands in the following format:
· Add {passengers} – add a wagon to the end with the given number of passengers.
· {passengers} - find an existing wagon to fit all the passengers (starting from the first wagon)
At the end, print the final state of the train (all the wagons separated by a space).
РЕШЕНИЯ:
https://pastebin.com/jncbV31J 100/100
https://pastebin.com/uakpmsEy 0/100.
Благодаря! Стана ясно.