Given an array of size n and multiple values around which we need to left rotate the array.
Input:
First line consists of T test case. First line of every test case consists of N and K, N denoting number of elements of array and K denoting the number of places to shift. Second line of every test case consists of elements of array.
Output:
Single line output, print the rotated array.
Constraints:
1<=T<=100
1<=N<=10^4
1<=K<=10^4
Example:
Input:
1
5 14
1 3 5 7 9
Output:
9 1 3 5 7
Code :-
http://ide.geeksforgeeks.org/CooMFU
Note:-Code was not getting pasted properly so code url is attached.
Please suggest ways for reducing execution time.