Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

284
Vistas
Why's this leetcode (easy) problem marking me wrong?

Preparing for an interview and practicing some LC. Doing this question:

https://leetcode.com/problems/move-zeroes/

My solution is as follows:

//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]
   
    
};

The debugger shows that nums has a value that is correct after running but LC is saying that my code is incorrect. Am I missing something here or is LC just buggy?

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda