A zero XOR subset is a non-empty subset that contains XOR of all the elements in it that is equal to . You are given an array of numbers.
You are required to determine the number of different zero XOR subsets of this array.
Input format
Output format
Print the single number denoting the count of zero XOR subsets of the given array.
Constraints
For [1, 2, 3] ,there is only 1 subset (1, 2, 3) having Xor (1 ^ 2 ^3) = 0.
So, the answer is 1.