10. Single Number
easyAsked at MercuryFind the one element that appears exactly once where every other element appears twice.
By Alex Chen, Founder, InterviewChamp.AI · Last verified
Problem
Given a non-empty array of integers where every element except one appears exactly twice, find that single one. Your algorithm should run in linear time and ideally use constant extra space.
Constraints
1 <= nums.length <= 3*10^4-3*10^4 <= nums[i] <= 3*10^4Exactly one element appears once
Examples
Example 1
nums = [2,2,1]1Example 2
nums = [4,1,2,1,2]4Approaches
1. Hash count
Tally occurrences and return the key with count 1.
- Time
- O(n)
- Space
- O(n)
const c=new Map();
for(const x of nums) c.set(x,(c.get(x)||0)+1);
for(const [k,v] of c) if(v===1) return k;Tradeoff:
2. XOR fold
XOR all values together: duplicates cancel, leaving the unique value. Linear time, O(1) space.
- Time
- O(n)
- Space
- O(1)
function singleNumber(nums) {
let acc = 0;
for (const n of nums) acc ^= n;
return acc;
}Tradeoff:
Mercury-specific tips
Mercury maps this onto reconciliation: every ACH credit should pair with a debit, so the surviving 'single' is the unmatched leg that needs human review.
Solve it now
Free. No sign-up. Python and JavaScript run instantly in your browser.
Practice these live with InterviewChamp.AI
Drill Single Number and other Mercury interview questions under real-loop conditions with instant feedback on your reasoning, complexity claims, and code.
Practice these live with InterviewChamp.AI →