Question: Your task is to remove all duplicates from an array. For example, if the array has the values 4 7 11 4 9 5 11
Your task is to remove all duplicates from an array. For example, if the array has the values
4 7 11 4 9 5 11 7 3 5
then the array should be changed to
4 7 11 9 5 3
Here is a simple algorithm: Look at a[i]. Count how many times it occurs in a. If the count is larger than 1, remove it. What is the growth rate of the time required for this algorithm?
Step by Step Solution
3.45 Rating (165 Votes )
There are 3 Steps involved in it
RemoveDuplicatesIntArrayjava pub... View full answer
Get step-by-step solutions from verified subject matter experts
