Subsequences of String Problem Statement
You are provided with a string 'STR'
that consists of lowercase English letters ranging from 'a' to 'z'. Your task is to determine all non-empty possible subsequences of the string 'STR'
.
Explanation:
A subsequence of a string is derived by deleting zero or more characters from the string while maintaining the order of the remaining characters.
Input:
The first line of input consists of an integer 'T' representing the number of test cases. Each test case contains one line, which holds the string 'STR'
.
Output:
For each test case, print the subsequences of the string 'STR'
separated by space. Each test case's output must be printed on a separate line. The order of output subsequences can vary.
Example:
Input:
2
abc
ab
Output:
a ab ac abc b bc c
a ab b
Constraints:
1 ≤ T ≤ 10
1 ≤ |STR| ≤ 16
- Where
|STR|
denotes the length of the string'STR'
.
Note:
You do not need to print anything; the output functionality is already handled. Only implement the function to generate the required subsequences.

AnswerBot
4mo
Generate all possible subsequences of a given string.
Use recursion to generate all possible subsequences by including or excluding each character in the string.
Maintain a current index to keep track o...read more
Help your peers!
Add answer anonymously...
Quikr Software Developer interview questions & answers
A Software Developer was asked Q. Given a number K and an array, find a pair of elements whose sum is equal to K.
A Software Developer was asked Q. How can PHP memory be increased at runtime if it is exhausted?
A Software Developer was asked Q. Write a stored procedure from a given set of tables and conditions.
Popular interview questions of Software Developer
A Software Developer was asked Q1. Given a number K and an array, find a pair of elements whose sum is equal to K.
A Software Developer was asked Q2. How can PHP memory be increased at runtime if it is exhausted?
A Software Developer was asked Q3. Write a stored procedure from a given set of tables and conditions.
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

