mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
34 lines
1.5 KiB
HTML
34 lines
1.5 KiB
HTML
<p>给你两个下标从 <strong>0</strong> 开始的数组 <code>nums1</code> 和 <code>nums2</code> ,两个数组都只包含非负整数。请你求出另外一个数组 <code>nums3</code> ,包含 <code>nums1</code> 和 <code>nums2</code> 中 <strong>所有数对</strong> 的异或和(<code>nums1</code> 中每个整数都跟 <code>nums2</code> 中每个整数 <strong>恰好</strong> 匹配一次)。</p>
|
||
|
||
<p>请你返回 <code>nums3</code> 中所有整数的 <strong>异或和</strong> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><b>输入:</b>nums1 = [2,1,3], nums2 = [10,2,5,0]
|
||
<b>输出:</b>13
|
||
<strong>解释:</strong>
|
||
一个可能的 nums3 数组是 [8,0,7,2,11,3,4,1,9,1,6,3] 。
|
||
所有这些数字的异或和是 13 ,所以我们返回 13 。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><b>输入:</b>nums1 = [1,2], nums2 = [3,4]
|
||
<b>输出:</b>0
|
||
<strong>解释:</strong>
|
||
所有数对异或和的结果分别为 nums1[0] ^ nums2[0] ,nums1[0] ^ nums2[1] ,nums1[1] ^ nums2[0] 和 nums1[1] ^ nums2[1] 。
|
||
所以,一个可能的 nums3 数组是 [2,5,1,6] 。
|
||
2 ^ 5 ^ 1 ^ 6 = 0 ,所以我们返回 0 。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= nums1.length, nums2.length <= 10<sup>5</sup></code></li>
|
||
<li><code>0 <= nums1[i], nums2[j] <= 10<sup>9</sup></code></li>
|
||
</ul>
|