Challenge 9: Union and Intersection of Linked Lists
In this lesson, linked lists meet data set operations.
We'll cover the following...
Problem statement
Union and intersection are two of the most popular operations, which can be performed on data sets. Now, you will be implementing them for linked lists! Take a look at their definitions:
Union
Given the two lists of A and B, the union is the list that contains elements or objects that ...