Question: Complete the method called myUnion () in Main.java. The method should return a new String() array containing the first n consecutive elements that are equal

Complete the method called myUnion () in Main.java. The method should return a new String() array containing the first n consecutive elements that are equal between the array and ArrayList, not including nulls. Meaning, if the array and ArrayList are ("a", "b", "c", null) and ("a", "b", "c", nully respectively, the method should return ("a", "b", "c"). Another example: if the array and ArrayList are ["a", "b", "c", null, null) and ("a", "b", "d", "c", null) respectively, the method should return ("a", "b"). One final example: if the array and ArrayList are ["a", "z", "c") and ("a", "b", "c") respectively, the method should return ("a"). An empty array should be returned if there is no overlap. The returned array should be of size n. You can assume that both the array and ArrayList are arranged with all of the null values at the end. Be careful of accessing an out-of-bounds index or calling String.equals() on null values! Add Configur Mainjava 1 import java.util.ArrayList; 2 public class Main { public static String() myUnion(String[] a, ArrayList
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
