Question: String generation Given a string S 1 of length L 1 consisting of Latin uppercase alphabets only and a string S 2 of length L
String generation
Given a string S of length L consisting of Latin uppercase alphabets only and a string S of length L consisting of characters 'T'and F only.
Generate a lexicographically smallest string S of length L L such that a substring of length L in string S starting at index i i L is equal to S if and only if ith element of $ is T without quotes else not.
If no such string can be generated, print without quotes
Notes
A string a is lexicographically smaller than a string b if and only if one of the following holds:
a is a prefix of b but a b;
in the first position where a and b differ, the string a has a letter that appears earlier in the alphabet than the corresponding letter in b
Find the lexicographically smallest string S which satisfies the given condition.
Function description
Complete the solve function. This function takes the following parameters and returns the answer.
S: Represents a string ST
S: Represents a string S
Input format for custom testing
Note: Use this input format if you are testing against custom input or writing
deg C
Mostly cloudy
Search
New Sub
re
V
code in a language where we don't provide boilerplate code.
The first line contains T which represents the number of test cases.
For each test case:
The first line contains a string S
The second line contains a string S
Output format
For each test case, print a string S in a new line or if not possible.
Constraints
T
IS
S
Sample input E
ABCA
TFFF
Sample output
ABCAAAA
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
