If no such substring exists then you need to print -1, else print the length of the substring ‘S’.
The first line of input contains an integer 'T' representing the number of test cases.
The first line of each test case contains two space-separated strings ‘A’ and ‘B’.
For each test case, print -1 if no such substring exists, else print length of the required substring.
The output of each test case will be printed in a separate line.
1 <= T <= 5
1 <= |A| = |B| <= 3000
Both A, B contain only lowercase English letters.
Where |A| and |B| are the length of strings.
Time Limit: 1 sec
You do not need to print anything, it has already been taken care of. Just implement the given function.