Given an array ‘ARR’ of size ‘N,’ swap the Kth element from beginning with the Kth element from the end.
For example:If ‘N’ = 5 and K = 2
[1, 2, 3, 4, 5]
Then the output will be [1, 4, 3, 2, 5].
The first line of input contains an integer T denoting the number of test cases.
The first line of each test case contains two space-separated integers N, and K, where N is the number of elements of the array and K is the index.
The second line of each test case contains ‘N’ space-separated integers, denoting the array elements.
Output format :
For each test case, print the array after swapping the Kth element from the start and the Kth element from the end.
The output of each test case will be printed in a separate line.
Note:
You do not need to print anything; it has already been taken care of. Just implement the given function.
1 <= T <= 5
1 <= K < N <= 5000
Time Limit : 1 sec
1
8 3
1 2 3 4 5 6 7 8
1 2 6 4 5 3 7 8
The Kth element from the beginning is 3 and from the end is 6.
1
5 2
1 2 3 4 5
1 4 3 2 5
Can we do it directly?
O(N), where N is the size of the given array.
At worst, K can be equal to N, and then we have to traverse the array completely. Therefore, O(K + K) = O(N + N) = O(N).
O(1)
Since we are not using any extra space.