-
Notifications
You must be signed in to change notification settings - Fork 0
/
A_Is_your_horseshoe_on_the_other_hoof.cpp
59 lines (47 loc) · 1.15 KB
/
A_Is_your_horseshoe_on_the_other_hoof.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
// #include <bits/stdc++.h>
// using namespace std;
// int main() {
// int n = 4;
// long long int count[4] = {0};
// long long int arr[4];
// for (int i = 0; i < n; i++) {
// long long int value;
// cin >> value;
// arr[i] = value;
// }
// for (int i = 0; i < n; i++) {
// for (int j = i + 1; j < n; j++) {
// if (arr[i] == arr[j]) {
// count[i]++;
// }
// }
// }
// long long int missing = 0;
// for (int i = 0; i < n; i++) {
// if((count[0]==1 && count[1]==1) || (count[0]==1 && count[2]==1) ){
// missing=2;
// break;
// }
// else if (missing < count[i]) {
// missing = count[i];
// }
// }
// cout <<endl;
// cout << missing;
// return 0;
// }
//shortcut with set
#include <bits/stdc++.h>
using namespace std;
int main() {
int n = 4;
set<int> colors;
for (int i = 0; i < n; i++) {
int value;
cin >> value;
colors.insert(value);
}
int missing_colors = 4 - colors.size();
cout << missing_colors;
return 0;
}