write a go solution for Description: Define the range of a non-empty array to be the maximum value minus the minimum value. For example, the range of [1,4,2] is 4-1=3. You are given an array a_1,a_2,ldots,a_n of length n>=3. It is guaranteed a is sorted. You have to color each element of a red or blue so that: - the range of the red elements does not equal the range of the blue elements, and - there is at least one element of each color. If there does not exist any such coloring, you should report it. If there are multiple valid colorings, you can print any of them. Input Format: The first line contains a single integer t (1<=t<=100) — the number of test cases. The first line of each test case contains an integer n (3<=n<=50) — the length of the array. The second line of each test case contains n integers a_1,a_2,ldots,a_n (1<=a_i<=10^9). It is guaranteed a_1<=a_2<=ldots<=a_n-1<=a_n. Output Format: For each test case, if it is impossible to color a to satisfy all the constraints, output textttNO. Otherwise, first output textttYES. Then, output a string s of length n. For 1<=i<=n, if you color a_i red, s_i should be textttR. For 1<=i<=n, if you color a_i blue, s_i should be textttB. Note: In the first test case, given the array [1,1,2,2], we can color the second element blue and the remaining elements red; then the range of the red elements [1,2,2] is 2-1=1, and the range of the blue elements [1] is 1-1=0. In the second test case, we can color the first, second, fourth and fifth elements [1,2,4,5] blue and the remaining elements [3] red. The range of the red elements is 3-3=0 and the range of the blue elements is 5-1=4, which are different. In the third test case, it can be shown there is no way to color a=[3,3,3] to satisfy the constraints.. Output only the code with no comments, explanation, or additional text.