-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path41.js
More file actions
51 lines (37 loc) · 861 Bytes
/
Copy path41.js
File metadata and controls
51 lines (37 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
41. First Missing Positive
Given an unsorted integer array, find the smallest missing positive integer.
Example 1:
Input: [1,2,0]
Output: 3
Example 2:
Input: [3,4,-1,1]
Output: 2
Example 3:
Input: [7,8,9,11,12]
Output: 1
Note:
Your algorithm should run in O(n) time and uses constant extra space.
*/
/**
* @param {number[]} nums
* @return {number}
*/
var firstMissingPositive = function(nums) {
let max = 1;
if (!nums.length) return max;
const map = {};
nums.map((n, i) => {
map[n] = i + 1;
if (n > max) max = n;
});
for (let i = 1; i <= max; ++i) {
if (!map[i]) return i;
}
return max + 1;
};
console.log(firstMissingPositive([]));
console.log(firstMissingPositive([0]));
console.log(firstMissingPositive([1,2,0]));
console.log(firstMissingPositive([3,4,-1,1]));
console.log(firstMissingPositive([7,8,9,11,12]));