Question: Create a method, public static int[] uniqueNumbers(int[] array), that returns an array that only contains the unique elements of array. If array= [1123334555677], you should
Create a method, public static int[] uniqueNumbers(int[] array), that returns an array that only contains the unique elements of array. If array= [1123334555677], you should return [1,2,3,4,5,6,7]. This is obviously a different size array than the original one. Java does have a structure where you do not have to initialize with a size, but don't use that. In the method, start by counting the numbers of unique elements in your array. Then, create an array of that size to hold the unique numbers.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
