#include #include #include #include using namespace std; vector getUnion(const vector& arr1, const vector& arr2) { unordered_set unionSet(arr1.begin(), arr1.end()); // Insert all elements of arr1 for (int num : arr2) { // Insert elements of arr2 unionSet.insert(num); } vector result(unionSet.begin(), unionSet.end()); // Convert set to vector sort(result.begin(), result.end()); // Sort the vector return result; } int main() { vector arr1 = {3, 5, 2, 7, 5}; vector arr2 = {8, 2, 6, 7, 1}; vector unionResult = getUnion(arr1, arr2); cout << "Union of the arrays (sorted): "; for (int num : unionResult) { cout << num << " "; } cout << endl; return 0; }