Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Permutations of a given string

https://practice.geeksforgeeks.org/problems/permutations-of-a-given-string/0#

Given a string S. The task is to print all permutations of a given string.

Input: The first line of input contains an integer T, denoting the number of test cases. Each test case contains a single string S in capital letter.

Output: For each test case, print all permutations of a given string S with single space and all permutations should be in lexicographically increasing order.

Constraints: 1 ≤ T ≤ 10 1 ≤ size of string ≤ 5

Example: Input: 2 ABC ABSG

Output: ABC ACB BAC BCA CAB CBA ABGS ABSG AGBS AGSB ASBG ASGB BAGS BASG BGAS BGSA BSAG BSGA GABS GASB GBAS GBSA GSAB GSBA SABG SAGB SBAG SBGA SGAB SGBA

Explanation: Testcase 1: Given string ABC has permutations in 6 forms as ABC, ACB, BAC, BCA, CAB and CBA .