-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathRemoveDuplicatesfromSortedArrayII.cpp
46 lines (37 loc) · 1.23 KB
/
RemoveDuplicatesfromSortedArrayII.cpp
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
/*
Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element can appear atmost twice and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
Note that even though we want you to return the new length, make sure to change the original array as well in place
For example,
Given input array A = [1,1,1,2],
Your function should return length = 3, and A is now [1,1,2].
LINK: https://www.interviewbit.com/problems/remove-duplicates-from-sorted-array-ii/
*/
int Solution::removeDuplicates(vector<int> &A)
{
// Do not write main() function.
// Do not read input, instead use the arguments to the function.
// Do not print the output, instead return values as specified
// Still have a doubt. Checkout www.interviewbit.com/pages/sample_codes/ for more details
int n = A.size();
int i=0,j=1,cnt=1;
while(j<n)
{
if(A[i]==A[j] && cnt>=2)
j++;
else
{
if(A[i]==A[j])
cnt++;
else
cnt=1;
i++;
if(i>=n)
break;
A[i]=A[j];
j++;
}
}
return i+1;
}