Skip to content

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

Notifications You must be signed in to change notification settings

Asad-Mirza/Print-Permutations-of-a-String

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

print-permutations-of-a-string

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 .

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages