DSA Tracker

Easy

Single Number

An easy Bit Manipulation problem included in Apna College, Love Babbar 450, Striver A2Z. Below: the roles whose interviews prioritise this topic, and how to practise it.

Topic
Bit Manipulation
Sheets
3
Core for
9 roles
Platform
LeetCode

The problem

Given a non-empty integer array where every element appears twice except for one, find that single element which appears exactly once. Your algorithm must run in linear time and use only constant extra space.

Example 1

Input
nums = [2, 2, 1]
Output
1
Why
2 appears twice and 1 appears once. XOR of all elements: 2^2^1 = 0^1 = 1.

Example 2

Input
nums = [4, 1, 2, 1, 2]
Output
4
Why
4 appears once, while 1 and 2 each appear twice. XOR: 4^1^2^1^2 = 4^(1^1)^(2^2) = 4^0^0 = 4.

Example 3

Input
nums = [1]
Output
1
Why
The array has only one element, which is the answer.

Constraints

  • 1 <= nums.length <= 3 * 10^4
  • -3 * 10^4 <= nums[i] <= 3 * 10^4
  • Each element appears twice except for one element which appears only once

How to think about it

Updated 2026-09-09

Every bit position behaves like an independent parity toggle. Because pairing identical values flips each bit an even number of times and returns it to zero, running XOR across the entire sequence vaporizes all paired numbers at once. What survives is precisely the lone value that had no partner to cancel it.

Approaches, worst first

  1. Hash map frequency table

    time O(n) · space O(n)

    Record how often every number appears, then walk the map keys to find the one with count one. Clear and direct, but building a dynamic table wastes linear memory for a property that needs no history.

  2. Sort and compare neighbors

    time O(n log n) · space O(1)

    Sort the array so matching items sit side-by-side in adjacent pairs, then step by two until an element mismatches its partner. Saves hash memory, but reordering costs O(n log n) and mutates the array.

  3. Single XOR reductionWrite this one

    time O(n) · space O(1)

    Accumulate every element into an accumulator using bitwise XOR. Identical numbers cancel out regardless of visit order because XOR is both commutative and associative, leaving the unique element in a single pass without extra allocations.

Where people lose marks · 3
  • Initializing the XOR accumulator with a non-zero value corrupts the final answer, since zero is the true identity element under XOR.
  • Relying on arithmetic sum formulas like 2 * sum(set) - sum(array) can overflow standard fixed-width 32-bit integers if numbers or counts are large.
  • Thinking negative integers require separate branch handling; two's complement bitwise XOR cancels negative duplicates just as cleanly as positive ones.

The theory behind it

Bit Manipulation — the ground this problem stands on. All Bit Manipulation problems

What Bit Manipulation is

Bit manipulation is the practice of working directly on the individual ones and zeros that form numbers in computer memory. Every integer is stored as a tiny row of electrical switches that are either on or off. Instead of running arithmetic loops, bitwise operations flip, mask, shift, or combine these switches in a single hardware cycle. This allows compact storage of sets and blazing-fast checks without allocating extra memory.

When to reach for it

Reach for bit manipulation when problems ask to find a unique non-duplicate number, count set bits, determine if a value is a power of two, or pack a set of small booleans into a single integer. Prompts mentioning constant O(1) auxiliary space constraints on array queries often hint at XOR cancellation. It is also the foundation of bitmask dynamic programming, where subsets of up to twenty items are tracked as integer masks.

How the pattern works

Think of an integer as a fixed-length set of flags. Use bitwise AND to inspect if a specific bit is set, bitwise OR to turn a bit on, and bitwise XOR to flip a bit or cancel out matched pairs. Learn the standard bit tricks: n AND with n minus one clears the lowest set bit, which counts ones quickly, while n AND with negative n isolates the lowest set bit. When packing sets into masks, represent the empty set as zero and add item i by shifting one left by i and combining with OR.

What each operation costs

OperationTime
bitwise operation like AND, OR, or XORO(1)
count set bits across fixed integer widthO(1)
find single non-duplicate number using XORO(n)
What usually goes wrong with Bit Manipulation
  • Forgetting that bitwise operators have lower operator precedence than equality and arithmetic comparisons in most languages, evaluating expressions in the wrong order without parentheses.
  • Using signed right shift instead of unsigned logical right shift when processing negative numbers, which fills high-order bits with ones instead of zeros.
  • Shifting bits by thirty-two or more on standard 32-bit integers, causing undefined behavior or wrapped bit shifts that yield incorrect masks.

Which roles need this problem

Bit Manipulation is a core topic for these 9 roles — if you're targeting one of them, this problem is early in your path, not optional.

Secondary for 2 more roles, including ML Engineer, Information Retrieval Engineer.

Track this in your role's order

Pick your target role and all 370 problems — including this one — resequence to what that interview actually asks. Free.

Start free

More Bit Manipulation problems

Problem set and role mapping as of .