#include #include #include #include using namespace std; vector unionSorted(const vector& arr1, const vector& arr2) { set combined; // Using a set to avoid duplicates and sort automatically // Insert elements from both arrays into the set combined.insert(arr1.begin(), arr1.end()); combined.insert(arr2.begin(), arr2.end()); // Convert the set back to a vector vector sortedUnion(combined.begin(), combined.end()); return sortedUnion; } int main() { vector arr1 = {4, 8, 2, 6}; vector arr2 = {4, 5, 9, 1, 5, 3, 7}; vector result = unionSorted(arr1, arr2); // Output the result for (int num : result) { cout << num << " "; } cout << endl; return 0; }