i have one problem for example we have array
int a[]=new int[]{a1,a2,a3,a4,..........an}:
task is fill the same array by elements which are not in the array
for example
a={1,3,4,5,6,7}
should be filled by any numbers {2,8,9,12,13,90}
or others but not by elements which are in array this must not be{1,12,13,14,110}
because 1 is in the array a
thanks