题解 | #找出字符串中第一个只出现一次的字符#
找出字符串中第一个只出现一次的字符
https://www.nowcoder.com/practice/e896d0f82f1246a3aa7b232ce38029d4
#include <iostream> #include <vector> using namespace std; int main() { string str; vector<char> vec(1001, 0); while (cin >> str) { for (auto i:str){ ++vec[i]; } int flag; for (auto i:str){ if (vec[i] == 1){ cout << i << endl; flag = 1; break; } else { flag = -1; } } if (flag == -1) cout << flag << endl; } return 0; }#23届找工作求助阵地##我的实习求职记录##14天打卡计划##零基础学习C++#