-
Notifications
You must be signed in to change notification settings - Fork 0
/
hmw_6_3.cpp
58 lines (46 loc) · 982 Bytes
/
hmw_6_3.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
/*
Homework 6_3
Arian Owji
604649619
*/
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <algorithm>
using namespace std;
void remove_duplicates(vector<int> &v) {
for (int i = 0; i < v.size(); i++) {
for (int j = i + 1; j < v.size(); j++) {
if (v[i] == v[j]) {
v.erase(v.begin() + j);
}
}
}
}
int main() {
char response = 'y';
while (response == 'y') {
vector<int> inputVector;
int number;
string input;
std::cout << "Enter a list of integers: ";
getline(cin, input);
istringstream stream(input);
while (stream >> number) {
inputVector.push_back(number);
}
remove_duplicates(inputVector);
std::cout << "The list without duplicates: ";
for (int i = 0; i < inputVector.size(); i++) {
std::cout << inputVector[i] << " ";
}
std::cout << endl << endl;
std::cout << "Continue <y/n>? ";
std::cin >> response;
cin.clear();
cin.ignore(1000, '\n');
std::cout << endl;
}
return 0;
}