logo CodeStepByStep logo

Contains

Language/Type: C# arrays traversals

Write a method named Contains that accepts two arrays of integers a1 and a2 as parameters and that returns a bool value indicating whether or not a2's sequence of elements appears in a1 (true for yes, false for no). The sequence of elements in a2 may appear anywhere in a1 but must appear consecutively and in the same order. For example, if variables called a1 and a2 store the following values:

int[] a1 = {1, 6, 2, 1, 4, 1, 2, 1, 8};
int[] a2 = {1, 2, 1};

Then the call of Contains(a1, a2) should return true because a2's sequence of values {1, 2, 1} is contained in a1 starting at index 5. If a2 had stored the values {2, 1, 2}, the call of Contains(a1, a2) would return false because a1 does not contain that sequence of values. Any two arrays with identical elements are considered to contain each other, so a call such as Contains(a1, a1) should return true.

You may assume that both arrays passed to your method will have lengths of at least 1. You may not use any strings to help you solve this problem, nor methods that produce string results such as converting each array into a string.

Method: Write a C# method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.