Statement
Given an integer array, nums, of length , where all the integers of nums are in the range and each integer appears once or twice, return an array of all the integers that appear twice.
Note: Write an algorithm that runs in time and uses only constant auxiliary space, excluding the space occupied by the output.
Constraints:
-
nums.length -
-
nums[i] -
Each element in
numsappears once or twice.