ACACACACACACACAC....
2023-12-23 20:26:19
发布于:广东
9阅读
0回复
0点赞
#include <iostream>
using namespace std;
const int N = 1000001;
int n, a[N];
string s;
int main(){
bool flag = false;
cin >> s;
for(auto i : s){
a[i - 'a']++;
}
for(int i = 0; i <= 26; i++){
if(a[i] == 1){
cout << char(i + 'a');
flag = true;
return 0;
}
}
if(flag == false){
cout << "no";
}
return 0;
}
这里空空如也
有帮助,赞一个