LeetCode.540.Single Element in a Sorted Array
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode.540.Single Element in a Sorted Array相关的知识,希望对你有一定的参考价值。
恩, 沙比提
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的主要内容,如果未能解决你的问题,请参考以下文章
每日一题- Leetcode 540. Single Element in a Sorted Array
每日一题- Leetcode 540. Single Element in a Sorted Array
Leetcode 540. Single Element in a Sorted Array
Leetcode 540. Single Element in a Sorted Array