Single Number III — LeetCode 260 Python Solution

MediumBit ManipulationArray
Problem
#260
Reading time
2 min

The problem

Given an integer array nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only once.

Example

Input
nums = [1,2,1,3,2,5]
Output
[3,5]
Explanation
[5, 3] is also a valid answer.

Python solution

Python
class Solution:
    def singleNumber(self, nums: List[int]) -> List[int]:
        xs = reduce(xor, nums)
        a = 0
        lb = xs & -xs
        for x in nums:
            if x & lb:
                a ^= x
        b = xs ^ a
        return [a, b]

Complexity

MeasureComplexity
TimeO(n), where n is the length of the array
SpaceO(1) auxiliary

Pattern: Bit Manipulation

Use XOR, masks and the low-bit trick to replace whole data structures with an integer. LeetCode 260. Single Number III is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Bit Manipulation.

The bit manipulation guide has the Python template for the pattern and the 194 LeetCode problems that use it.

Related problems

Frequently asked questions

How hard is LeetCode 260. Single Number III?
LeetCode 260. Single Number III is rated Medium on LeetCode.
What is the time complexity of LeetCode 260. Single Number III?
The Python solution on this page runs in O(n), where n is the length of the array.
What is the space complexity of LeetCode 260. Single Number III?
The Python solution on this page uses O(1) auxiliary space.
What topics does LeetCode 260. Single Number III cover?
LeetCode 260. Single Number III is tagged Bit Manipulation and Array on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview