Here is my code for removing duplicated values from an array. I think I tested it with the most possible cases. Any suggestions or bugs?
public static int[] removeDuplicates(int[] arr){
int end = arr.length;
for(int i = 0; i < end; i++){
for(int j = i + 1; j < end; j++){
if(arr[i] == arr[j]){
int shiftLeft = j;
for(int k = j+1; k < end; k++, shiftLeft++){
arr[shiftLeft] = arr[k];
}
end--;
j--;
}
}
}
int[] whitelist = new int[end];
for(int i = 0; i < end; i++){
whitelist[i] = arr[i];
}
return whitelist;
}
After some tests, it appears really inefficient because an array with 1,000,000 elements takes a very long time to end. Is there any better way to implement this on arrays?