Press "Enter" to skip to content

Posts tagged as “single number”

花花酱 LeetCode 540. Single Element in a Sorted Array

Problem:

Given a sorted array consisting of only integers where every element appears twice except for one element which appears once. Find this single element that appears only once.

Example 1:

Example 2:

Note: Your solution should run in O(log n) time and O(1) space.

Idea:

Binary search.

Time complexity: O(logn)

Space complexity: O(1)

Solution: 

C++