题解 | #字符个数统计#
字符个数统计
https://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
#include <iostream> #include <set> using namespace std; void tongji() { string str; getline(cin, str); set<int> oset(str.begin(), str.end()); // 使用 str 初始化 有序 无重复的 set集合 cout << oset.size() << endl; // 输出 无重复 有序的 字符串的个数 } int main() { tongji(); return 0; }
#社招#