“Anzahl der doppelten Paare in Array JavaScript” Code-Antworten

Anzahl der doppelten Paare in Array JavaScript

// how to count number of duplicate pairs in array javascript
function countNumberOfPairs(arr) {
    let pairsCount = 0;
    let counterObj = {};

  for (let num of arr) {
    if (!counterObj[num]) {
      counterObj[num] = 1;
    } else {
      counterObj[num] = counterObj[num] + 1;

      if (counterObj[num] === 2) {
        pairsCount++;
        counterObj[num] = 0;
      }
    }
  }
  return pairsCount;
}
Chetan Nada

Zählen Sie doppelte Werte JavaScript

var counts = {};
your_array.forEach(function(x) { counts[x] = (counts[x] || 0)+1; });
Xanthous Xenomorph

Ähnliche Antworten wie “Anzahl der doppelten Paare in Array JavaScript”

Fragen ähnlich wie “Anzahl der doppelten Paare in Array JavaScript”

Weitere verwandte Antworten zu “Anzahl der doppelten Paare in Array JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen