Suppose ‘A’ = “brute”, and ‘B’ = “groot”
The shortest supersequence will be “bgruoote”. As shown below, it contains both ‘A’ and ‘B’ as subsequences.
A A A A A
b g r u o o t e
B B B B B
It can be proved that the length of supersequence for this input cannot be less than 8. So the output will be bgruoote.
The first line of the input contains a single integer ‘T’ representing the no. of test cases.
The first line of each test case contains a single string ‘A’, denoting the first string described in the problem.
The second line of each test case contains a single string, ‘B’, denoting the second string described in the problem.
For each test case, print the shortest string ‘S’, which contains ‘A’ and ‘B’ as its subsequences.
Print a separate line for each test case.
You are not required to print anything; it has already been taken care of. Just implement the function and return the answer.
1 ≤ T ≤ 100
1 ≤ |A|, |B| ≤ 1000
Both strings consist of only lowercase English letters.
1 ≤ Σ(|A|+|B|) ≤ 3000
Time limit: 1 Sec