Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.18 KB

File metadata and controls

49 lines (31 loc) · 1.18 KB

136. Single Number - 只出现一次的数字

给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。

说明:

你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?

示例 1:

输入: [2,2,1]
输出: 1

示例 2:

输入: [4,1,2,1,2]
输出: 4

题目标签:Bit Manipulation / Hash Table

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
python3 48 ms N/A
class Solution:
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        res = 0
        for num in nums:
            res ^= num
        return res