Problem Description
Given an array nums of n integers where nums[i] is in the range [1, n], return an array of all the integers in the range [1, n] that do not appear in nums.
Key Insights
- The input array contains integers from 1 to n, where n is the length of the array.
- Some integers in this range may be missing from the array.
- The task is to identify all integers in the range that are not present in the input array.
- A solution that utilizes the input array without additional space can be achieved by leveraging index manipulation.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1) (excluding the output array)
Solution
The solution involves iterating through the input array and using the values to mark indices corresponding to the numbers found in the array. This is done by negating the value at the index equal to the current number minus one. After processing the array, the indices that remain positive indicate the missing numbers. The final results are collected and returned.