


‘N’ = 4, ‘S’ = “code”
Character ‘c’ gets changed to ‘b’.
Character ‘o’ gets changed to ‘p’.
Character ‘d’ gets changed to ‘c’.
Character ‘e’ gets changed to ‘f’.
Encoded string = “bpcf”
The first line contains an integer ‘T’, which denotes the number of test cases to be run. Then the test cases follow.
The first line of each test case contains an integer ‘N’, denoting the length of the string.
The second line of each test case contains a string ‘S’ of length ‘N’.
Print a string that denotes the encoded string of the original string.
Print the output of each test case in a new line.
You don’t need to print anything. It has already been taken care of. Just implement the given function.
1 <= T <= 10
1 <= N <= 10^5
The Sum of ‘N’ over all test cases is <= 10^5.
The string ‘S’ contains only lowercase letters.
Time Limit: 1 sec
Algorithm :