int main() {
int array[] = { 1, 1, 2, 4, 3, 3, 5, 6, 6, 6 };
int search[10] = { 0 };
for (int i = 0; i < 10; ++i)
search[i]++;
return 0;
}
// a buon intenditor poche parole
int main() {
int array[] = { 1, 1, 2, 4, 3, 3, 5, 6, 6, 6 };
int search[10] = { 0 };
for (int i = 0; i < 10; ++i)
search[i]++;
return 0;
}
// a buon intenditor poche parole
There are 10 kinds of people in the world: who knows the binary numeration and who not