3158. Find the XOR of Numbers Which Appear Twice
3158. Find the XOR of Numbers Which Appear Twice
Description
You are given an array nums
, where each number in the array appears either once or twice.
Return the bitwise XOR
of all the numbers that appear twice in the array, or 0 if no number appears twice.
Example 1:
1 | Input: nums = [1,2,1,3] |
Example 2:
1 | Input: nums = [1,2,3] |
Example 3:
1 | Input: nums = [1,2,2,1] |
Constraints:
1 <= nums.length <= 50
1 <= nums[i] <= 50
- Each number in
nums
appears either once or twice.
Hints/Notes
- Biweekly Contest 131
Solution
Language: C++
1 | class Solution { |