

N = 2
M = 2
B = [ [1, 2], [3, 4] ]
R = 1
C = 4
Both arrangements (box and shelf) are shown below:

Return [ [1, 2, 3, 4] ] as our final answer.
The first line contains an integer 'T', denoting the number of test cases.
Then the test cases follow:
The first line of each test case contains two space-separated integers, 'N' and 'M', denoting the number of rows and columns in the box 'B', respectively.
The following 'N' lines contain 'M' integers, denoting the toys' IDs in box 'B'.
Next line contains two space-separated integers, 'R' and 'C', denoting the number of rows and columns in the shelf 'S', respectively.
For each test case, print a matrix of size 'R*C' denoting the toy's arrangement on the shelf 'S'.
Print the output of each test case in a new line.
You are not required to print the expected output. It has already been taken care of. Just implement the function.
1 <= 'T' <= 10
1 <= 'N', 'M', 'R', 'C' <= 100
-10^3 <= 'B[i][j]' <= 10^3
Time Limit: 1 sec
Assume 0-based indexing to understand the following:
Algorithm:
Assume 0-based indexing to understand the following: