Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create these methods without importing anything and without using arraycopy(). public static int [] [] removeDuplicates(int [][] array) It takes as input a two-dimensional array
Create these methods without importing anything and without using arraycopy().
public static int [] [] removeDuplicates(int [][] array) It takes as input a two-dimensional array and returns a new two-dimensional array where every sequence of duplicate numbers is replaced by a single occurrence of the respective number. Keep in mind that duplicate numbers can extend in more than one rows though. public static void replaceElement(int[] [] array, int elem, int [] newElem) It takes a two-dimensional array and modifies it in-place (i.e. the method doesn't return anything). Every occurrence of elem is replaced by the items contained in newElem. The modification must happen in-place, i.e. the memory address of the whole array must remain the same; but the memory addresses of its rows can change of course. public static int [] [] smallestSubarray(int[] [] array, int sum) It takes a rectangular array and returns a square-size subarray of it whose values have a sum that is equal or larger to sum. A subarray can't be smaller than 22. If there are more than one square-size subarrays that satisfy the requirements, the method must return the square that has the smallest size. If two or more equally-sized squares satisfy the requirements, it must return the square whose values have the highest sum. Assume that the sum has such a value that always warrants a solution (i.e. no need to check or worry about this)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started