448. Find All Numbers Disappeared in an Array

Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.

Find all the elements of [1, n] inclusive that do not appear in this array.

Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.

Example:

Input:

[4,3,2,7,8,2,3,1]


Output:

[5,6]

soluiton

(1) Java

class Solution {
    public List<Integer> findDisappearedNumbers(int[] nums) {
        List<Integer> rst = new ArrayList<>();
        for (int i = 0; i < nums.length; i++) {
            while (nums[i] > 0 && nums[i] <= nums.length && nums[nums[i]-1] != nums[i]) {
                int tmp = nums[nums[i]-1];
                nums[nums[i]-1] = nums[i];
                nums[i] = tmp;
            }
        }
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] != i+1) {
                rst.add(i+1);
            }
        } 
        return rst;
    }
}

(2) Python

class Solution:
    def findDisappearedNumbers(self, nums):
        """
        :type nums: List[int]
        :rtype: List[int]
        """
        rst = []
        if not nums:
            return rst
        for i, v in enumerate(nums):
            vv = abs(v)
            if vv > 0 and vv <= len(nums):
                nums[vv-1] = -abs(nums[vv-1])
        for i, v in enumerate(nums):
            if v >= 0:
                rst.append(i+1)
        return rst

(3) Scala



results matching ""

    No results matching ""