136. Single Number

xiaoxiao2021-02-27  898

0异或任何数字都是数字本身,相同的数字异或为0,同时异或有交换律,不因数字的顺序改变,所有相同的经过异或均变为0,和唯一的一个数字异或后就为那个数字。

class Solution(object): def singleNumber(self, nums): """ :type nums: List[int] :rtype: int """ rtype=0 for i in nums: rtype = rtype^i return rtype
转载请注明原文地址: https://www.6miu.com/read-270.html

最新回复(0)