Skip to content

Latest commit

 

History

History

136-Single_Number-只出现一次的数字

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

136、只出现一次的数字

tag: python3 、 位运算 、 哈希表


题目描述

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

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

示例1

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

示例2

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

题目链接

136.只出现一次的数字


题解

  • 一行 - 位运算

    我们知道异或运算对两个相同的数进行结果会得到 0,那么我们只要将数组中所有的数进行异或,那么最终出现两次的都会变为 0,剩下的结果便是只出现一次的数。

    class Solution:
      def singleNumber(self, nums: List[int]) -> int:
          return reduce(lambda x, y: x^y, nums)