You are given two strings 'STR1' and 'STR2'. You need to tell whether the strings are meta strings or not.
Meta strings are strings that can be made equal by swapping exactly one pair of distinct characters in one of the strings.
Note:
Equal strings are not considered as meta strings.
Input Format:
The first line of input contains an integer 'T' denoting the number of test cases or queries to be run.
The first line of each test case or query contains the first string “STR1”.
The second line of the test case or query contains the second string “STR2”.
Output Format:
For each test case, print a single line containing “YES” if the strings are meta strings otherwise, “NO”.
The output of each test case will be printed in a separate line.
Note:
You do not need to print anything; it has already been taken care of. Just implement the given function.
Constraints:
1 <= T <= 10
2 <= length of STR1<= 10 ^ 5
2 <= length of STR2 <= 10 ^ 5