Input: The first line will consists of one integer T denoting the number of test cases. For each test case: 1) The first line co | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Input: The first line will consists of one integer T denoting the number of test cases. For each test case: 1) The first line co

Sample Input 1 5 2 1 2 3 4 5 Sample Output 4 5 1 2 3 Explanation Here T is 1, which means one test case. N=5 denoting the number of elements in the array and K=2 , denoting the number of steps of rotations. The initial array is: 1,2,3,4,5 In first rotation, 5 will come in the first position and all other elements will move to one position ahead from their current position. Now, the resultant array will be 5,1,2,3,4 In second rotation, 4 will come in the first position and all other elements will move to one position ahead from their current position. Now, the resultant array will be 4,5,1,2,3

5th Sep 2020, 7:06 AM
Hrishabh Gupta
Hrishabh Gupta - avatar
3 Answers
+ 4
Looks very homework like. Let's begin with something from your part first, you write some code, share it here, then people help you with the thing you find to be difficult. Just FYI, people here help when they see an effort from your side. So if you have that code, just share your try here, then your chances for answer will be better. Doesn't matter if your code has bug or does not work, what matter is your try ...
5th Sep 2020, 7:44 AM
Ipang
0
gg
19th Nov 2020, 4:12 PM
bekk
0
Hrishabh Gupta Your question appears to be homework / assignment. Please show us your attempt, the community is not here to do your work for you. Please use the forum guidelines provided below and use the 8 rules for getting help from the community. https://www.sololearn.com/Blog/38/8-simple-rules-to-get-help-from-the-community Your question will be reviewed by the mod-team and mostly likely will be marked for deletion. https://www.sololearn.com/Discuss/1316935/?ref=app
7th Jan 2021, 8:39 PM
BroFar
BroFar - avatar