双循环+boolean 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年12月20日 0 点赞 0 评论 119 浏览 评分:9.9
2847: 找第一个只出现一次的字符 摘要:``` #include using namespace std; const int N=10010; char s[N]; int cnt[26]; int main(){ cin…… 题解列表 2023年12月19日 0 点赞 0 评论 86 浏览 评分:0.0
题解 2847: 找第一个只出现一次的字符 摘要: #include using namespace std; const int N=100000; char a[N]; int cnt[26]; …… 题解列表 2023年12月19日 0 点赞 0 评论 89 浏览 评分:9.9
暴力典中典 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 100001int main(){ char str[N]; gets(str); int len…… 题解列表 2023年12月11日 0 点赞 0 评论 57 浏览 评分:0.0
题解 2847: 找第一个只出现一次的字符(好像写的复杂了,不过第一想法是这么写的) 摘要:解题思路:建立一个长度为26的全0列表,表示从'a'到'z',之后遍历的时候遇到第一个1就输出,然后break注意事项:注意chr和ord的使用ord是打印ascll数…… 题解列表 2023年12月04日 0 点赞 0 评论 104 浏览 评分:0.0
c代码记录之只出现一次的首个字符 摘要: #include #include int main(){ char str[100000]; gets(str); …… 题解列表 2023年11月28日 0 点赞 0 评论 65 浏览 评分:0.0
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: 找第一个只出现一次的字符 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char b,a[100000]; int…… 题解列表 2023年11月06日 0 点赞 0 评论 85 浏览 评分:0.0
HashMap中方法getOrDefault 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; import java.util.Map; import java.util.HashMap; public c…… 题解列表 2023年11月02日 0 点赞 0 评论 148 浏览 评分:9.9
找第一个只出现一次的字符 摘要:解题思路:可用列表将出现一次的字符打包注意事项:打包后,应先判断列表是否为空参考代码:a=input()ls=[]for i in a: if (a.count(i)==1): l…… 题解列表 2023年10月18日 0 点赞 0 评论 119 浏览 评分:0.0