Challenge 2: Single Number
5 min readFind element appearing once while others appear twice. Master 4 approaches: brute force O(n²), HashTable O(n) space, mathematical formula, and optimal XOR bitwise O(1) space. Essential coding interview challenge.