Skip to content
QuizMaker logoQuizMaker
Activity
DSA Course: Interview Patterns and Problem Solving
Module 14: Bit Manipulation
Best Time to Buy and Sell Stock: Greedy Pattern
Maximum Subarray: Kadane Pattern
Move Zeroes: Two pointers Pattern
Contains Duplicate: Set Pattern
Valid Anagram: Frequency map Pattern
Longest Substring Without Repeating Characters: Sliding window Pattern
Valid Palindrome: Two pointers Pattern
Longest Palindromic Substring: Expand around center Pattern
Group Anagrams: Hash key Pattern
Binary Search: Classic search Pattern
Search Insert Position: Lower bound Pattern
First Bad Version: Predicate search Pattern
Search in Rotated Sorted Array: Rotated search Pattern
Find Minimum in Rotated Sorted Array: Rotated minimum Pattern
Valid Parentheses: Stack matching Pattern
Min Stack: Auxiliary stack Pattern
Daily Temperatures: Monotonic stack Pattern
Next Greater Element I: Monotonic stack Pattern
Evaluate Reverse Polish Notation: Stack evaluation Pattern
Reverse Linked List: Pointer reversal Pattern
Merge Two Sorted Lists: Dummy node Pattern
Linked List Cycle: Fast and slow pointers Pattern
Middle of the Linked List: Fast and slow pointers Pattern
Remove Nth Node From End: Two pointers Pattern
Binary Tree Traversals: DFS recursion Pattern
Maximum Depth of Binary Tree: Height recursion Pattern
Binary Tree Level Order Traversal: BFS queue Pattern
Validate Binary Search Tree: Range bounds Pattern
Lowest Common Ancestor: Recursive split Pattern
Connected Components: Adjacency DFS Pattern
Number of Islands: Grid DFS Pattern
Flood Fill: Boundary DFS Pattern
Clone Graph: Hash Map DFS Pattern
Course Schedule: Topological Sort Pattern
Union Find Components: Disjoint Set Pattern
Shortest Path in Unweighted Graph: BFS Distance Pattern
Climbing Stairs: Fibonacci DP Pattern
House Robber: Pick or Skip DP Pattern
Coin Change: Minimum Coins DP Pattern
Longest Increasing Subsequence: Binary Search DP Pattern
Longest Common Subsequence: 2D DP Pattern
0/1 Knapsack: Capacity DP Pattern
Longest Consecutive Sequence: Hash Set Pattern
Subarray Sum Equals K: Prefix Sum Hashmap Pattern
First Unique Character: Frequency Map Pattern
Find Duplicates: Frequency Map Pattern
Ransom Note: Character Availability Pattern
Sort Colors: Dutch National Flag Pattern
Next Permutation: Pivot and Suffix Reversal Pattern
Merge Intervals: Sort and Sweep Pattern
Find First and Last Position: Boundary Binary Search Pattern
Search a 2D Matrix: Flattened Binary Search Pattern
Subsets: Pick or Skip Recursion Pattern
Generate Parentheses: Valid State Backtracking Pattern
Combination Sum: Reuse Choice Backtracking Pattern
N-Queens: Constraint Backtracking Pattern
Word Search: Grid Backtracking Pattern
Kth Largest Element: Size-K Min-Heap Pattern
Top K Frequent Elements: Frequency Heap Pattern
Merge K Sorted Lists: Min-Heap Multiway Merge Pattern
Median Finder: Two Heaps Pattern
Task Scheduler: Greedy Max-Heap Pattern
Jump Game: Farthest Reach Greedy Pattern
Gas Station: Greedy Reset Pattern
Non-overlapping Intervals: Earliest End Greedy Pattern
Minimum Arrows to Burst Balloons: Interval End Greedy Pattern
Partition Labels: Last Occurrence Greedy Pattern
Single Number: XOR Cancellation Pattern
Power of Two: n and n-1 Pattern
Number of 1 Bits: Brian Kernighan Pattern
Single Number III: Rightmost Set Bit Pattern
XOR From 1 to N: Modulo Cycle Pattern
Prime Check: Square Root Trial Division Pattern
Sieve of Eratosthenes: Prime Marking Pattern
GCD: Euclidean Remainder Pattern
Binary Exponentiation: Fast Power Pattern
Modular Inverse: Extended Euclid Pattern
Implement Trie: Prefix Tree Pattern
Longest Common Prefix: Single Branch Trie Pattern
LRU Cache: Hash Map Plus Recency List Pattern
Segment Tree: Range Sum Query Pattern
Fenwick Tree: Binary Indexed Prefix Sum Pattern
CONTENTS

Single Number III: Rightmost Set Bit Pattern

Find two unique values when every other value appears twice.

DSA Course: Interview Patterns and Problem Solving
Module 14: Bit Manipulation
dsa
bit-manipulation
+1
May 29, 2026
23
A

Learning Outcome

After this lesson, you should be able to split numbers into two XOR groups using a bit where the two answers differ.

Problem Statement

Given an integer array where exactly two elements appear once and all others appear twice, return the two single elements.

InputOutputWhy
nums = [1,2,1,3,2,5][3,5]1 and 2 cancel as pairs; 3 and 5 remain as the two unique values.

Brute Force Approach

Use a frequency map and collect values with count 1. This is simple but uses extra memory.

Optimized Approach

XOR all values to get xorAll = a xor b. Pick the rightmost set bit of xorAll to separate a and b into different groups, then XOR within each group.

Exact Pseudocode

xorAll = 0
for x in nums:
  xorAll = xorAll xor x
mask = xorAll & -xorAll
a = 0
b = 0
for x in nums:
  if x & mask:
    a = a xor x
  else:
    b = b xor x
return [a, b]

Reference Code

class Solution:
    def singleNumber(self, nums):
        xor_all = 0
        for x in nums:
            xor_all ^= x

        mask = xor_all & -xor_all
        a = 0
        b = 0
        for x in nums:
            if x & mask:
                a ^= x
            else:
                b ^= x
        return [a, b]

Sample Dry Run

StepStateResult
XOR allduplicates cancelxorAll = 3 xor 5
Find maskmask is a bit where 3 and 5 differgroups separate answers
XOR group Aduplicates inside group cancelone answer remains
XOR group Bduplicates inside group cancelother answer remains

Complexity

MeasureValueReason
TimeO(n)The array is scanned twice.
SpaceO(1)Only xorAll, mask, and two answers are stored.

Edge Cases

  • The two unique values must be different, so xorAll is nonzero.
  • Output order usually does not matter.
  • Use a real differing bit, not a random bit.

Interview Checklist

  • XOR all values first.
  • Use rightmost set bit to split groups.
  • XOR inside each group to cancel duplicates.

FAQs

Why does the mask separate the two answers?

The mask is set in xorAll, so one answer has that bit and the other does not.

Why do duplicates stay together?

Equal numbers have the same mask bit, so each duplicate pair lands in the same group and cancels.

What is the core pattern?

XOR partition by rightmost set bit.

Share this article

Share on TwitterShare on LinkedInShare on FacebookShare on WhatsAppShare on Email

Test your knowledge

Take a quick quiz based on this chapter.

hardDSA Course
Single Number III - Rightmost Set Bit Pattern Practice Quiz
5 questions8 min

0 comments

Please login to comment.
No comments yet.
Lesson 4 of 5 in Module 14: Bit Manipulation
Previous in Module 14: Bit Manipulation
Number of 1 Bits: Brian Kernighan Pattern
Next in Module 14: Bit Manipulation
XOR From 1 to N: Modulo Cycle Pattern
Back to DSA Course: Interview Patterns and Problem Solving
Back to moduleCategories