美文网首页
136. Single Number

136. Single Number

作者: SetsunaChiya | 来源:发表于2016-11-12 09:45 被阅读0次
    class Solution(object):
        def singleNumber(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        return -sum(nums)+2*sum(set(nums))
    

    相关文章

      网友评论

          本文标题:136. Single Number

          本文链接:https://www.haomeiwen.com/subject/otcqpttx.html