title: leetcode-540-有序数组中的单一元素
date: 2022-02-14 15:37:22
cover: https://static.nnnnzs.cn/bing/20220214.png
tags:
请你找出并返回只出现一次的那个数。
你设计的解决方案必须满足 O(log n) 时间复杂度和 O(1) 空间复杂度。
输入: nums = [1,1,2,3,3,4,4,8,8]
输出: 2
输入: nums = [3,3,7,7,10,11,11]
输出: 10
提示:
1 <= nums.length <= 105
0 <= nums[i] <= 105