27.leetcode136_single_number

Posted vlice

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了27.leetcode136_single_number相关的知识,希望对你有一定的参考价值。

1.题目描述

Given an array of integers, every element appears twice except for one. Find that single one.

Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?

在给定数组中除了一个元素外每个元素出现两次,找到那个孤独的元素(注意:在线性时间内解决,而且不使用额外空间)

2.题目分析

典型的位运算,异或操作,遇到相同的数结果为0

3.解题思路

 1 class Solution(object):
 2     def singleNumber(self, nums):
 3         """
 4         :type nums: List[int]
 5         :rtype: int
 6         """
 7         result=0  
 8         i=0
 9         while i<len(nums):
10             result ^= nums[i] #异或操作
11             i+=1
12         return result

 


以上是关于27.leetcode136_single_number的主要内容,如果未能解决你的问题,请参考以下文章

Lc136_只出现一次的数字

Lc136_只出现一次的数字

三种方法任君挑选 LeetCode_136只出现一次的数字

Public key for ambari-server-2.4.2.0-136.x86_64.rpm is not installed

atcoderEnclosed Points [abc136F]

使用tcpcopy复制线上流量进行测试