logo CodeStepByStep logo

Intersect

Language/Type: C# List collections
Related Links:

Write a method named Intersect that accepts references to two sorted List of integers as parameters and returns a new list that contains only the elements that are found in both lists. For example, if list v1 and v2 store:

  • {1, 4, 8, 9, 11, 15, 17, 28, 41, 59}
  • {4, 7, 11, 17, 19, 20, 23, 28, 37, 59, 81}

Then the call of Intersect(v1, v2) returns the list: {4, 11, 17, 28, 59} Note that you can assume that both lists passed store their elements in sorted order. Do not modify the two lists passed in as parameters.

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.