Twin Numbers

Bit Manipulation Contest Easy

Given an array of integers nums, where each element occurs thrice, except one which occurs twice. Return the element which repeats twice.

Constraints

  • 2 <= nums.length <= 105
  • 0 <= nums[i] <= 104
  • There will always be an element that occurs twice.

Company Tags

[ ]