Wpis z mikrobloga

Hej, próbuję rozwiązać zadanie z CodeWars.

Proszę o podpowiedź dlaczego mój kod nie działa.

KOD:
function save(sizes, hd) {
let space = 0
let arr = []
for (let i = 0; ihd){
break
} else {
space =+sizes[i]
arr.push(sizes[i])
}

Zadanie:
Your task is to determine how many files of the copy queue you will be able to save into your Hard Disk Drive. The files must be saved in the order they appear in the queue.
INPUT:
Array of file sizes (0 <= s <= 100)
Capacity of the HD (0 <= c <= 500)
OUTPUT:
Number of files that can be fully saved in the HD.
EXAMPLES:
save([4,4,4,3,3], 12) -> 3
# 4+4+4 <= 12, but 4+4+4+3 > 12
save([4,4,4,3,3], 11) -> 2
# 4+4 <= 11, but 4+4+4 > 11
Do not expect any negative or invalid inputs.
}return arr.length
}

Zrzut ekranu testów:

#programowanie #javascript #codewars
PrzegrywConsultingSpzoo - Hej, próbuję rozwiązać zadanie z CodeWars.

Proszę o podp...

źródło: comment_1646689246n3oqGtwG3D3mc9XUEYoTKR.jpg

Pobierz
  • 3
  • Odpowiedz
  • Otrzymuj powiadomienia
    o nowych komentarzach