1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/只出现一次的数字 III [single-number-iii].html

38 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2023-12-09 18:42:21 +08:00
<p>给你一个整数数组&nbsp;<code>nums</code>,其中恰好有两个元素只出现一次,其余所有元素均出现两次。 找出只出现一次的那两个元素。你可以按 <strong>任意顺序</strong> 返回答案。</p>
2022-03-27 20:56:26 +08:00
2023-12-09 18:42:21 +08:00
<p>你必须设计并实现线性时间复杂度的算法且仅使用常量额外空间来解决此问题。</p>
2022-03-27 20:56:26 +08:00
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
2022-03-27 20:56:26 +08:00
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>nums = [1,2,1,3,2,5]
<strong>输出:</strong>[3,5]
<strong>解释:</strong>[5, 3] 也是有效的答案。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>nums = [-1,0]
<strong>输出:</strong>[-1,0]
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>nums = [0,1]
<strong>输出:</strong>[1,0]
</pre>
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
2022-03-27 20:56:26 +08:00
<p><strong>提示:</strong></p>
<ul>
2023-12-09 18:42:21 +08:00
<li><code>2 &lt;= nums.length &lt;= 3 * 10<sup>4</sup></code></li>
<li><code>-2<sup>31</sup> &lt;= nums[i] &lt;= 2<sup>31</sup> - 1</code></li>
2022-03-27 20:56:26 +08:00
<li>除两个只出现一次的整数外,<code>nums</code> 中的其他数字都出现两次</li>
</ul>