标签:solution enum 用户 class pre leetcode 提交 etc ret
问题描述:
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。
说明:
执行用时:1 ms, 在所有 Java 提交中击败了99.65%的用户
内存消耗:41 MB, 在所有 Java 提交中击败了21.14%的用户
class Solution {
public int singleNumber(int[] nums) {
//x^x = 0, x^0=x -> x^x^y = x
int ans = 0;
for(int i=0; i<nums.length; i++) {
ans = ans^nums[i];
}
return ans;
}
}
标签:solution enum 用户 class pre leetcode 提交 etc ret
原文地址:https://www.cnblogs.com/CodeSPA/p/13584745.html