136. 只出现一次的数字python

136. 只出现一次的数字python

问题描述

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

说明:

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

示例 1:

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

示例 2:

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

解答1

class Solution(object):
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        t = list(set(nums))
        for i in t:
            if nums.count(i) == 1:
                return i
        

运行结果

136. 只出现一次的数字python_第1张图片

解答2

class Solution(object):
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
      
        return sum(set(nums)) * 2 - sum(nums)
      

运行结果

136. 只出现一次的数字python_第2张图片

解答3

class Solution(object):
    def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
     
        a = 0
        for num in nums:
            a = a ^ num
        return a

运行结果

136. 只出现一次的数字python_第3张图片

心得

解答一是自己想的,主要用了count函数没有技术含量
解答二和三是看的别人的算法,原来没有了解过位运算,没想到还可以这样,以后总结总结位运算性质
136. 只出现一次的数字python_第4张图片

你可能感兴趣的:(力扣,python,leetcode,算法)