
Asked in Quikr
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...
Top Software Developer Interview Questions Asked at Quikr
Q. Given a number K and an array, find a pair of elements whose sum is equal to K.
Q. How can PHP memory be increased at runtime if it is exhausted?
Q. Write a stored procedure from a given set of tables and conditions.
Interview Questions Asked to Software Developer at Other Companies
Top Skill-Based Questions for Quikr Software Developer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Software Development Interview Questions and Answers
250 Questions
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

