Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. write a complete program based on public static void main(String[] args) { public static boolean contains(int[] a1, int[] a2) { for(int i = 0;
1. write a complete program based on
public static void main(String[] args) { public static boolean contains(int[] a1, int[] a2) { for(int i = 0; i
14. Write a method called contains that accepts two arrays of integers al and a2 as parameters and that returns a boolean value indicating whether or not the sequence of elements in a2 appears in al (true for yes, false formel The sequence must appear consecutively and in the same order. For example, consider the following arrays: int[] listl (1, 6, 2, 1, 4, 1, 2, 1, 8) int [ ] list2 = {1, 2, 1); The call of contains(listl, list2) should return true because the sequence of values in list2 [1, 2, 1]is contained in listl starting at index 5. If list2 had stored the values [2, 1, 2], the call of contains(listl, list2) would return false. Any two lists with identical elements are considered to contain each other. Every any contains the empty array, and the empty array does not contain any arrays other than the empty array itselfStep 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