LeetCode. 缺失数字

Posted Howardwang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode. 缺失数字相关的知识,希望对你有一定的参考价值。

题目要求:

给定一个包含 0, 1, 2, ..., n 中 n 个数的序列,找出 0 .. n 中没有出现在序列中的那个数。

示例:

输入: [3,0,1]
输出: 2

代码:

class Solution {
public:
    int missingNumber(vector<int>& nums) {
        int n = nums.size();
        if(n == 0) return -1;
        int count = (1 + n) * n / 2;
        for(int i = 0; i < n; i++) {
            count -= nums[i];
        }
        return count;
    }
};

以上是关于LeetCode. 缺失数字的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode. 缺失数字

Leetcode 41 缺失的第一个整数

LeetCode刷题-消失的两个数字

LeetCode(剑指 Offer)- 53 - II. 0~n-1中缺失的数字

LeetCode(剑指 Offer)- 53 - II. 0~n-1中缺失的数字

leetcode-python-缺失数字