怀抱观古今,寝食展戏谑。这篇文章主要讲述LeetCode 448. Find All Numbers Disappeared in an Array相关的知识,希望能为你提供帮助。
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.
【LeetCode 448. Find All Numbers Disappeared in an Array】Example:
Input: [4,3,2,7,8,2,3,1]Output: [5,6]
代码:
/** * @param {number[]} nums * @return {number[]} */ var findDisappearedNumbers = function(nums) { let number = []; for(let i = 0; i < nums.length; i++) { let index = Math.abs(nums[i]) - 1; //取得index,将数组index位置的数字变为负数,那么之后遍历数组的时候,如果有正数,那么那个正数index+1便是我们所需结果 nums[index] = -Math.abs(nums[index]); } for(let i = 0; i < nums.length; i++) { if(nums[i] > 0 ) { number.push(i + 1); } } return number; };
推荐阅读
- Android性能优化系列之Bitmap图片优化
- Android studio 相关下载
- APP安全在线检测
- Android模拟器运行慢的解决方案
- NeteaseCloudWebApp模仿网易云音乐的vue自己从开源代码中学习到的
- Android 开发环境部署
- HDU 6020 MG loves apple (乱搞())
- vue2+webpack使用2-componentA与App.vue的互相联系
- android导入其他工程源码包后出现大量错误提示remove @Override annotation 的解决办法