Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

java please Task 2.5 Complete the method called myUnion() in Main.java. The method should return a new String[] array containing the first n consecutive elements

java please image text in transcribed
image text in transcribed
Task 2.5 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", null} 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! Run it! Mainava import java.util.ArrayList; 01 A2 A public class Main { public static String() myUnion(String[] a, ArrayList 1) { return newArray: > public static void main(String[] args) { // write some tests here

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design And Implementation

Authors: Shouhong Wang, Hai Wang

1st Edition

1612330150, 978-1612330150

More Books

Students also viewed these Databases questions