Pregunta de entrevista de CGI

1. write a code to find duplicates in an array

Respuestas de entrevistas

Anónimo

6 de dic de 2015

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

1

Anónimo

23 de mar de 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