给定一个包含?
[0, n]
?中?n
?个数的数组?nums
?,找出?[0, n]
?这个范围内没有出现在数组中的那个数。
class Solution {
public int missingNumber(int[] nums) {
int n = nums.length;
int total = n * (n + 1) / 2;
int res = 0;
for (int num : nums){
res += num;
}
return total - res;
}
}