Class Solution
java.lang.Object
g1801_1900.s1835_find_xor_sum_of_all_pairs_bitwise_and.Solution
1835 - Find XOR Sum of All Pairs Bitwise AND.<p>Hard</p>
<p>The <strong>XOR sum</strong> of a list is the bitwise <code>XOR</code> of all its elements. If the list only contains one element, then its <strong>XOR sum</strong> will be equal to this element.</p>
<ul>
<li>For example, the <strong>XOR sum</strong> of <code>[1,2,3,4]</code> is equal to <code>1 XOR 2 XOR 3 XOR 4 = 4</code>, and the <strong>XOR sum</strong> of <code>[3]</code> is equal to <code>3</code>.</li>
</ul>
<p>You are given two <strong>0-indexed</strong> arrays <code>arr1</code> and <code>arr2</code> that consist only of non-negative integers.</p>
<p>Consider the list containing the result of <code>arr1[i] AND arr2[j]</code> (bitwise <code>AND</code>) for every <code>(i, j)</code> pair where <code>0 <= i < arr1.length</code> and <code>0 <= j < arr2.length</code>.</p>
<p>Return <em>the <strong>XOR sum</strong> of the aforementioned list</em>.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> arr1 = [1,2,3], arr2 = [6,5]</p>
<p><strong>Output:</strong> 0</p>
<p><strong>Explanation:</strong> The list = [1 AND 6, 1 AND 5, 2 AND 6, 2 AND 5, 3 AND 6, 3 AND 5] = [0,1,2,0,2,1]. The XOR sum = 0 XOR 1 XOR 2 XOR 0 XOR 2 XOR 1 = 0.</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> arr1 = [12], arr2 = [4]</p>
<p><strong>Output:</strong> 4</p>
<p><strong>Explanation:</strong> The list = [12 AND 4] = [4]. The XOR sum = 4.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>1 <= arr1.length, arr2.length <= 10<sup>5</sup></code></li>
<li><code>0 <= arr1[i], arr2[j] <= 10<sup>9</sup></code></li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
getXORSum
public int getXORSum(int[] arr1, int[] arr2)
-