2847: 找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:n=input()flag=Falsefor i in n: if n.count(i)==1: print(i) flag=True …… 题解列表 2023年11月24日 0 点赞 0 评论 222 浏览 评分:9.9
2847: 找第一个只出现一次的字符 摘要:```cpp #include #include using namespace std; int main() { char ch[1000000],letter[26],let…… 题解列表 2023年01月10日 0 点赞 0 评论 338 浏览 评分:9.9
题解 2847: 找第一个只出现一次的字符 摘要:#include#includeusing namespace std;char str[100010];int cnt[26];int main(){ cin >> str; for(i…… 题解列表 2023年08月15日 0 点赞 0 评论 260 浏览 评分:9.9
判断唯一字符-易懂最佳方案 摘要:解题思路:判断字符串是否存在唯一字符 比如 aba ,那么字符'a'最先出现坐标: 0 (str.indexOf("a"))最后出现坐标:2 (str.lastIndexOf…… 题解列表 2024年02月19日 0 点赞 1 评论 207 浏览 评分:9.9
简单方法(两个循环比较) 摘要:```c #include #include //strlen函数需要调用 int main() { char str[100001],out; int len, sum;…… 题解列表 2023年01月17日 1 点赞 8 评论 782 浏览 评分:10.0