Merge K Sorted Arrays Problem Statement

Given 'K' different arrays that are individually sorted in ascending order, merge all these arrays into a single array that is also sorted in ascending order.

Input

The first line of input contains an integer T, the number of test cases.

The first line of each test case contains an integer that denotes the value of K.

The next 2*K lines of each test case follow: 
The first line contains an integer ‘N’ denoting the size of the array. 

The second line contains N space-separated integers.

Output

The first and only line of output contains space-separated elements of the merged and sorted array, as described in the task.

Example

Input:
1
2
3
1 3 5
2
2 6
Output:
1 2 3 5 6

Constraints

  • 1 ≤ T ≤ 5
  • 1 ≤ K ≤ 5
  • 1 ≤ N ≤ 20
  • -10^5 ≤ DATA ≤ 10^5
  • Time Limit: 1 sec

Note

You don’t have to print anything; it has already been taken care of. Just implement the function.
Be the first one to answer
Add answer anonymously...
Avalara Technologies Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter