糖串
糖串
全部文章
分类
归档
标签
去牛客网
登录
/
注册
糖串的博客
全部文章
(共2篇)
题解 | 找出字符串中第一个只出现一次的字符
#include <iostream> #include <vector> using namespace std; int main() { string s; cin >> s; vector<int> order; ...
2025-03-20
1
43
题解 | 小红的“质数”寻找
#include <iostream> #include <map> #include <vector> using namespace std; string fun(char first) { int n = first - '0'; if ...
2025-03-19
8
41