RN
Size: a a a
RN
AM
AH
AH
AM
AM
AM
AH
AM
D
AH
RN
AH
AH
D
D
else if (current_comand == "BUSES_FOR_STOP") {
int counter = 0;
cin >> stop_name;
for (const auto &item: marshrute) {
for (const auto &i :item.second) {
if (i == stop_name) {
counter++;
}
}
}
if (counter == 0) {
cout << "No stop";
} else {
for (const auto &it : marshrute) {
for (const auto &i :it.second) {
if (i == stop_name) {
cout << it.first << " ";
counter++;
}
}
}
}
cout << endl;
D
RR
RR
RR