Skip to content

Commit 79e8a7d

Browse files
Optimised : 0448-find-all-numbers-disappeared-in-an-array
1 parent a14fcbd commit 79e8a7d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

javascript/0448-find-all-numbers-disappeared-in-an-array.js

+28
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,31 @@ var findDisappearedNumbers = function(nums) {
1717

1818
return Array.from(numberSet);
1919
};
20+
21+
//Optimized Solution for Follow-up
22+
23+
//time complexity O(n) , space complexity O(1)
24+
25+
var findDisappearedNumbers = function(nums) {
26+
for(let i = 0; i < nums.length; i++) {
27+
let curr = Math.abs(nums[i])
28+
let idx = curr - 1
29+
if(nums[idx] > 0) {
30+
nums[idx] = nums[idx] * (-1)
31+
}
32+
}
33+
let res = []
34+
for(let i = 0; i < nums.length; i++) {
35+
if(nums[i] > 0) {
36+
res.push(i + 1)
37+
}
38+
}
39+
return res
40+
};
41+
42+
// For each value in the array mark its presence by making the number negative at that place in array
43+
// eg. if you hae array [3,1,4,1] for 3, i will go to index 2 and make its value negative ie. now nums[2] becomes -4. present array: [3,1,-4,1]
44+
// for 1, i will go to index 0 and make its value negative ie. now nums[0] becomes -3. present array: [-3,1,-4,1]
45+
// for 4, (take abs value), i will go to index 3 and make its value negative ie. now nums[3] becomes -1. present array: [-3,1,-4,-1]
46+
// for 1 take abs value), i will go to index 0 as it is already -ve do nothing. present array: [-3,1,-4,-1]
47+
// At last I will have [-3,1,-4,-1]. now i will iterate over the array, whichever idx has positive value that number will not be in the array so as we have nums[1]>0 so 2 is not in the list.

0 commit comments

Comments
 (0)