forked from abhishekdoifode1/Hacktoberfest2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemove-Duplicates-from-Sorted-Array.cpp
62 lines (52 loc) · 1.17 KB
/
Remove-Duplicates-from-Sorted-Array.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
Given a sorted array nums, remove the duplicates in-place such that each element appears only once and returns the new length.
Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.
*/
#include <iostream>
#include<stdio.h>
#include <bits/stdc++.h>
#include <cmath>
#include <vector>
#include <map>
#include <string>
#include <algorithm>
#include <iomanip>
#include<utility>
using namespace std;
#define ll long long
#define len length()
#define vi vector<int>
#define vl vector<ll>
#define fr(i,n) for(ll i=0;i<n;i++)
ll max(ll i,ll j){
return i>j?i:j;
}
int removeDuplicates(vector<int>& nums) {
int ind=1;
int n=nums.size();
if (n<=1) return n;
for(int i=0;i<n-1;i++){
if(nums[i+1]!=nums[i]){
nums[ind]=nums[i+1];
if(ind<n)
ind++;
}
}
nums.resize(ind);
return ind;
}
int main(){
int n;
cin>>n;
vector<int> v(n,0);
fr(i,n){
int x; cin>>x;
v[i]=x;
}
sort(v.begin(),v.end());
removeDuplicates(v);
for(int u =0;u<h;u++){
cout<<v[u];
}
return 0;
}