← Home
write a go solution for Description:
Let's call an array a_1,a_2,...,a_m of nonnegative integer numbers good if a_1+a_2+...+a_m=2*(a_1oplusa_2oplus...oplusa_m), where oplus denotes the bitwise XOR operation.

For example, array [1,2,3,6] is good, as 1+2+3+6=12=2*6=2*(1oplus2oplus3oplus6). At the same time, array [1,2,1,3] isn't good, as 1+2+1+3=7neq2*1=2*(1oplus2oplus1oplus3).

You are given an array of length n: a_1,a_2,...,a_n. Append at most 3 elements to it to make it good. Appended elements don't have to be different. It can be shown that the solution always exists under the given constraints. If there are different solutions, you are allowed to output any of them. Note that you don't have to minimize the number of added elements!. So, if an array is good already you are allowed to not append elements.

Input Format:
Each test contains multiple test cases. The first line contains the number of test cases t (1<=t<=10,000). The description of the test cases follows.

The first line of each test case contains a single integer n (1<=n<=10^5) — the size of the array.

The second line of each test case contains n integers a_1,a_2,...,a_n (0<=a_i<=10^9) — the elements of the array.

It is guaranteed that the sum of n over all test cases does not exceed 10^5.

Output Format:
For each test case, output two lines.

In the first line, output a single integer s (0<=s<=3) — the number of elements you want to append.

In the second line, output s integers b_1,...,b_s (0<=b_i<=10^18) — the elements you want to append to the array.

If there are different solutions, you are allowed to output any of them.

Note:
In the first test case of the example, the sum of all numbers is 12, and their oplus is 6, so the condition is already satisfied.

In the second test case of the example, after adding 4,4, the array becomes [8,4,4]. The sum of numbers in it is 16, oplus of numbers in it is 8.. Output only the code with no comments, explanation, or additional text.