#448. Find All Numbers Disappear

2017-04-18  本文已影响25人  Double_E

[TOC]

https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array/#/description

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]

翻译

思路

# Time O(2n) = O(n)
class Solution(object):
    def findDisappearedNumbers(self, nums):
        """
        :type nums: List[int]
        :rtype: List[int]
        """
        for num in nums:
            nums[abs(num) - 1] = -abs(nums[abs(num) - 1])
        return [i + 1 for i, v in enumerate(nums) if v > 0]
上一篇下一篇

猜你喜欢

热点阅读