Algorithm
Code Examples
#1 Code Example with C++ Programming
Code -
C++ Programming
#include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin>>t;
int n;
while(t--){
cin>>n;
for(int i = 2; i <= n; i++){
cout<<i<<" ";
}
cout<<1<<endl;
}
return 0;
}
Copy The Code &
Try With Live Editor
Input
2
2
5
2
5
Output
2 1
2 1 5 3 4
2 1 5 3 4
Demonstration
Codeforcess Solution 1454-A A. Special Permutation ,C++, Java, Js and Python,1454-A