employer cover photo
employer logo
employer logo

Dealertrack by Cox Automotive

Parte da empresa Cox Automotive

Empresa engajada

Pergunta de entrevista da empresa Dealertrack by Cox Automotive

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

Resposta da entrevista

Sigiloso

15 de fev. de 2016

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