Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<bits/stdc++.h>
- using namespace std;
- int main()
- {
- int t;
- cin>>t;
- while(t--)
- {
- string s;
- cin>>s;
- if(next_permutation(s.begin(),s.end())) cout<<s<<endl;
- else cout<<"no answer\n";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement