码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode.540.Single Element in a Sorted Array

时间:2017-04-03 12:44:30      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:pre   http   com   src   jpg   blog   strong   div   sort   

技术分享

 

恩, 沙比提

 1 class Solution(object):
 2     def singleNonDuplicate(self, nums):
 3         """
 4         :type nums: List[int]
 5         :rtype: int
 6         """
 7         xorsum = 0
 8         for i in nums:
 9             xorsum = xorsum ^ i
10         return xorsum
11         

 

LeetCode.540.Single Element in a Sorted Array

标签:pre   http   com   src   jpg   blog   strong   div   sort   

原文地址:http://www.cnblogs.com/hexsix/p/6661652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!