Merge two arrays in sorted order
Question: Merge two arrays in sorted order without duplicate (without using extra array) Output: Merge Two Arrays Method 1: Sort both array1 and array2 separately and eliminate the duplicates. Add array1 elements into the new array and then add array2 elements into the new array in sorted order. Method 2: Sort both array1 and array2 […]