136:只出现一次的数字

This commit is contained in:
huangge1199@hotmail.com 2021-07-19 22:51:50 +08:00
parent f149152b3a
commit 02f6de5264
4 changed files with 59 additions and 3 deletions

View File

@ -0,0 +1,40 @@
//给定一个非空整数数组除了某个元素只出现一次以外其余每个元素均出现两次找出那个只出现了一次的元素
//
// 说明
//
// 你的算法应该具有线性时间复杂度 你可以不使用额外空间来实现吗
//
// 示例 1:
//
// 输入: [2,2,1]
//输出: 1
//
//
// 示例 2:
//
// 输入: [4,1,2,1,2]
//输出: 4
// Related Topics 位运算 数组
// 👍 1926 👎 0
package leetcode.editor.cn;
//136:只出现一次的数字
class SingleNumber{
public static void main(String[] args) {
//测试代码
Solution solution = new SingleNumber().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int singleNumber(int[] nums) {
int xor = 0;
for (int num : nums) {
xor ^= num;
}
return xor;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,17 @@
<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>示例&nbsp;2:</strong></p>
<pre><strong>输入:</strong> [4,1,2,1,2]
<strong>输出:</strong> 4</pre>
<div><div>Related Topics</div><div><li>位运算</li><li>数组</li></div></div>\n<div><li>👍 1926</li><li>👎 0</li></div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long