Preparándome para una entrevista y practicando algo de LC. Haciendo esta pregunta:
https://leetcode.com/problems/move-zeroes/
Mi solución es la siguiente:
//filter out 0s using filter and includes methods //check length differnece between initial and filtered array //difference = num of 0s. push this amount to end of initial array. //make new array with dif as size n then fill with 0s and add to initial with spread operator var moveZeroes = function(nums) { let zero = [0]; let initLength = nums.length; nums = nums.filter(num => !zero.includes(num)) let lengthDif = initLength - nums.length let zeroArr = new Array(lengthDif) zeroArr.fill(0) nums = [...nums,...zeroArr] };El depurador muestra que nums tiene un valor correcto después de ejecutarse, pero LC dice que mi código es incorrecto. ¿Me estoy perdiendo algo aquí o LC solo tiene errores?