I got this problem from an interview with Microsoft.
Given an array of random integers, write an algorithm in C that removes duplicated numbers an
Here is a Java Version.
int[] removeDuplicate(int[] input){ int arrayLen = input.length; for(int i=0;i