Question d’entretien chez CGI

1. write a code to find duplicates in an array

Réponses aux questions d'entretien

Utilisateur anonyme

6 déc. 2015

use bubble sort ,create ur own array of size array.length and increase the size

1

Utilisateur anonyme

23 mars 2016

int[] array = new int[]{2,4,1,6,7,4,9,24,3,2,1}; List arrList = new ArrayList(); Map arrMap = new HashMap(); for(int i=0;i

1