mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 11:08:15 +08:00
17 lines
540 B
HTML
17 lines
540 B
HTML
<p>给定一个<strong>非空</strong>整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。</p>
|
|
|
|
<p><strong>说明:</strong></p>
|
|
|
|
<p>你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?</p>
|
|
|
|
<p><strong>示例 1:</strong></p>
|
|
|
|
<pre><strong>输入:</strong> [2,2,1]
|
|
<strong>输出:</strong> 1
|
|
</pre>
|
|
|
|
<p><strong>示例 2:</strong></p>
|
|
|
|
<pre><strong>输入:</strong> [4,1,2,1,2]
|
|
<strong>输出:</strong> 4</pre>
|