employer cover photo
employer logo
employer logo

Dealertrack by Cox Automotive

Fait partie de Cox Automotive

Employeur impliqué

Question d’entretien chez Dealertrack by Cox Automotive

If you have an integer array with duplicate values, how will you remove the duplicates.

Réponse à la question d'entretien

Utilisateur anonyme

15 févr. 2016

int[] s = { 1, 2, 3, 3, 4}; int[] q = s.Distinct().ToArray();