mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
38 lines
1.6 KiB
HTML
38 lines
1.6 KiB
HTML
|
<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> </p>
|
||
|
<p><strong>Example 1:</strong></p>
|
||
|
|
||
|
<pre>
|
||
|
<strong>Input:</strong> arr1 = [1,2,3], arr2 = [6,5]
|
||
|
<strong>Output:</strong> 0
|
||
|
<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.
|
||
|
</pre>
|
||
|
|
||
|
<p><strong>Example 2:</strong></p>
|
||
|
|
||
|
<pre>
|
||
|
<strong>Input:</strong> arr1 = [12], arr2 = [4]
|
||
|
<strong>Output:</strong> 4
|
||
|
<strong>Explanation:</strong> The list = [12 AND 4] = [4]. The XOR sum = 4.
|
||
|
</pre>
|
||
|
|
||
|
<p> </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>
|