美文网首页iOS Developer
LeetCode-448. Find All Numbers D

LeetCode-448. Find All Numbers D

作者: 冷灬叶枫 | 来源:发表于2017-06-16 23:12 被阅读46次

题目

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]

Subscribe to see which companies asked this question.

代码

func findDisappearedNumbers(_ nums: [Int]) -> [Int] {
    var tmp = nums;
    var arr: [Int] = []
    for i in 0..<tmp.count {
        let index = abs(tmp[i])  - 1
        if tmp[index] > 0 {
            tmp[index] *= -1
        }
    }
    for i in 0..<tmp.count {
        if tmp[i] > 0 {
            arr.append(i+1)
        }
    }
    return arr;
}

相关文章

网友评论

    本文标题:LeetCode-448. Find All Numbers D

    本文链接:https://www.haomeiwen.com/subject/lcqvqxtx.html