-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcode_2.cpp
More file actions
40 lines (36 loc) · 812 Bytes
/
code_2.cpp
File metadata and controls
40 lines (36 loc) · 812 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
//
// code_2.cpp
// Algorithm
//
// Created by Mohd Shoaib Rayeen on 23/11/18.
// Copyright © 2018 Shoaib Rayeen. All rights reserved.
//
#include <iostream>
#include <unordered_map>
using namespace std;
void occurredOnce(int arr[], int n) {
unordered_map<int, int> mp;
for (int i = 0; i < n; i++) {
mp[arr[i]]++;
}
for (auto it = mp.begin(); it != mp.end(); it++) {
if (it->second == 1) {
cout << it->first << " ";
}
}
}
int main() {
int n;
cout << "\nEnter Size\t:\t";
cin >> n;
int *a = new int[n];
cout << "\nEnter Array Elements\n";
for ( int i = 0; i < n; i++ ) {
cin >> a[i];
}
cout << "\nElement that appeared once\t:\t";
occurredOnce( a , n);
delete[] a;
cout << endl;
return 0;
}