Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

287
Visualizações
Javascript Array - Create Map with items within a tolerance

Take the following Javascript Array:

["21587569", "21587570", "21587572", "31856855", "31856854"]

You can visually see that the first 3 items are within a limit of 5 of any other item in that "group", the same can be said for the items at index 3 & 4.

How can I group these "similar" items using Javascript array functions, such as the following output array?

[{"21587569", "21587570", "21587572"},{"31856855", "31856854"}]

The items may not always be presented in order as they are in the example input array.

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You could sort and get groups if the delta of last items is smaller than five.

const
    data = [21587569, 21587570, 21587572, 31856855, 31856854],
    result = [...data]
        .sort((a, b) => a - b)
        .reduce((r, v) => {
            const last = r[r.length - 1];
            if (!last || v - last[last.length - 1] > 5) r.push([v]);
            else last.push(v);
            return r;
        }, []);

console.log(result);
    

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda