Essa empresa é sua?
Given array with random integers from negative infinity to infinity, Find the number that only appears once in this array (all the other numbers appear twice).
Sigiloso
XOR the values in the array. XOR is commutative and associative, so all the numbers that appear twice will get zeroed out. The last number will get XOR'd with 0 which will give us the number itself.