Busy Beaver is taking a walk on a path of colorful tiles.
The path consists of a line of $$$N$$$ tiles, each colored either red (r), green (g), blue (b), or yellow (y).
Busy Beaver's walk will follow these rules:
Busy Beaver will record the sequence of tile colors he visits on the walk in order. Busy Beaver is confident that he can recreate any sequence of $$$N$$$ colors on his walk.
Prove him wrong by providing any sequence of $$$N$$$ colors he can't recreate.
It can be shown that an answer always exists.
Each test contains multiple test cases. The first line contains the number of test cases $$$T$$$ ($$$1 \leq T \leq 10^4$$$). The description of the test cases follows.
The first line of each test case contains an integer $$$N$$$ ($$$3 \leq N \leq 3000$$$) — the number of tiles.
The second line of each test case contains a length $$$N$$$ string of characters in ('r', 'g', 'b', 'y'), the $$$i$$$'th character denoting the color of the $$$i$$$'th tile.
It is guaranteed that the sum of $$$N$$$ across all test cases is no more than $$$3 \cdot 10^5$$$.
For each test case, output the answer-sequence as a string of characters in ('r', 'g', 'b', 'y').
There are three subtasks for this problem.
3 3 rgb 3 gby 7 rgbybgr
yyy rrr yryryry
In the first test case, yellow never appears, so a sequence of $$$3$$$ yellows is not possible.
In the second test case, red never appears, so a sequence of $$$3$$$ reds is not possible.
In the third test case, every red tile is at least $$$3$$$ positions away from the yellow tile. So, any walk transitioning from a yellow to a red tile is impossible.