logo CodeStepByStep logo

unionSets

Related Links:

Write a function named unionSets that accepts as a parameter a reference to a HashSet of Sets of integers, and returns a Set of integers representing the union of all of the sets of ints. (A union is the combination of everything in each set.) For example, calling your function on the following set of sets:

{{1, 3}, {2, 3, 4, 5}, {3, 5, 6, 7}, {42}}

Should cause the following set of integers to be returned:

{1, 2, 3, 4, 5, 6, 7, 42}
Function: Write a C++ function as described, not a complete program.

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.