Given a string $$$s$$$, two players Hiraethsoul and hjh play the following game:
After the game ends:
Determine the winner assuming both players play optimally.
The first line contains a single integer $$$q$$$ ($$$1 \le q \le 5 \times 10^4$$$), the number of test cases.
For each test case:
The first line contains a single integer $$$n$$$ ($$$1 \le n \le 10^4$$$), the length of the string.
The second line contains a string $$$s$$$ of length $$$n$$$, consisting only of lowercase letters s, c, u, and t.
It is guaranteed that the sum of all $$$n$$$ over all test cases does not exceed $$$5 \times 10^4$$$.
For each test case, print Yes if Hiraethsoul wins; otherwise print No.
27scuttuc5scuts
YesNo
Players always append the chosen character to the end of their own string. The substring condition is checked only after the game ends. A substring is defined as a contiguous sequence of characters within a string.