DAYS
HOUR
MINS
SEC
Error
Given an array A of size N, print the reverse of it.
Example:
Input: 1 4 1 2 3 4 Output: 4 3 2 1
Input:
First line contains an integer denoting the test cases 'T'. T testcases follow. Each testcase contains two lines of input. First line contains N the size of the array A. The second line contains the elements of the array.
Output:
For each testcase, in a new line, print the array in reverse order.
Constraints:
1 <= T <= 100
1 <= N <=100
0 <= Ai <= 100
We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes