-
Notifications
You must be signed in to change notification settings - Fork 564
Expand file tree
/
Copy path6. Duplicates In Array.cpp
More file actions
38 lines (32 loc) · 920 Bytes
/
6. Duplicates In Array.cpp
File metadata and controls
38 lines (32 loc) · 920 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
/*
Given an integer array nums of length n where all the integers of nums are in the range [1, n] and each integer appears once or twice,
return an array of all the integers that appears twice.
You must write an algorithm that runs in O(n) time and uses only constant extra space.
Example 1:
Input: nums = [4,3,2,7,8,2,3,1]
Output: [2,3]
Example 2:
Input: nums = [1,1,2]
Output: [1]
*/
class Solution {
public:
vector<int> findDuplicates(vector<int>& nums) {
unordered_map<int,int>mp;
for(int i = 0 ; i < nums.size(); i++){
if(mp.find(nums[i])!= mp.end()){
mp[nums[i]]++;
}
else{
mp.insert({nums[i],1});
}
}
vector<int>ans;
for(auto it : mp){
if(it.second == 2){
ans.push_back(it.first);
}
}
return ans;
}
};