Question d’entretien chez Barclays

Write a function to sort an array based on the frequency.

Réponse à la question d'entretien

Utilisateur anonyme

22 août 2016

Used a hash map to store the numbers and their frequencies as pairs. Then used selection sort in the map values.

1