题目
给定一个包含 [0, n] 中 n 个数的数组 nums ,找出 [0, n] 这个范围内没有出现在数组中的那个数。
地址:https://leetcode.cn/problems/missing-number/description/
解题
var missingNumber = function (nums) {
let len = nums.length;
for (let i = 0; i item === i)
if(!arr.length){
return i
}
}
return len
};
【信息由网络或者个人提供,如有涉及版权请联系COOY资源网邮箱处理】
© 版权声明
部分内容为互联网分享,若有侵权请联系站长删除。
THE END
暂无评论内容