-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmallest_Positive_Missing_Number.cpp
More file actions
51 lines (40 loc) · 1.02 KB
/
Smallest_Positive_Missing_Number.cpp
File metadata and controls
51 lines (40 loc) · 1.02 KB
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
//{ Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution
{
public:
//Function to find the smallest positive number missing from the array.
int missingNumber(int arr[], int n)
{
vector<bool> seen(n + 1, false);
for(int i = 0; i < n; i++) {
if(arr[i] > 0 && arr[i] <= n) seen[arr[i]] = true;
}
for (int i = 1; i <= n; i++) {
if (!seen[i]) return i;
}
return n + 1;
}
};
//{ Driver Code Starts.
int missingNumber(int arr[], int n);
int main() {
//taking testcases
int t;
cin>>t;
while(t--){
//input number n
int n;
cin>>n;
int arr[n];
//adding elements to the array
for(int i=0; i<n; i++)cin>>arr[i];
Solution ob;
//calling missingNumber()
cout<<ob.missingNumber(arr, n)<<endl;
}
return 0;
}
// } Driver Code Ends