找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:a=input()for i in a: if a.count(i)==1: print(i) breakelse: print(…… 题解列表 2023年06月09日 0 点赞 1 评论 857 浏览 评分:9.9
理解题目所给的参考答案,易于理解,保证看了都会 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[4]; int i,j,k,n; for(i=0;i<4;i++) scan…… 题解列表 2023年06月09日 1 点赞 6 评论 877 浏览 评分:9.5
统计数字字符个数(python) 摘要:解题思路:注意事项:参考代码:a=input()s=[]for i in a: if i in'1234567890': s.append(i)print(len(…… 题解列表 2023年06月09日 0 点赞 0 评论 578 浏览 评分:0.0
A+B Problem(python) 解题思路:这题很简单,用map()函数输入两个值再直接相加即可注意事项:参考代码:x,y=map(int,input().split())print(x+y) 题解列表 2023年06月09日 0 点赞 0 评论 1342 浏览 评分:9.9
dfs搜索枚举 摘要:解题思路:把数字的每一位抠出来,然后进行搜索即可,从高位向低位搜索,高位越大越好注意事项:参考代码:import java.util.Scanner; public class Main { …… 题解列表 2023年06月09日 0 点赞 0 评论 682 浏览 评分:0.0
优质题解 预处理 + 双端队列 #预处理+单调队列+滑动窗口##前言俗话说的好,先易后难。我们先看一下这道题的一维版本:[1438.绝对差不超过限制的最长连续子数组](https://leetcode.cn/problems/longest-continuous-subarray-with-absolute-diff-less-th 题解列表 2023年06月09日 0 点赞 1 评论 1245 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> int main(){ char str[501]; gets(str); …… 题解列表 2023年06月09日 0 点赞 0 评论 521 浏览 评分:0.0
线性欧拉筛+前缀和 摘要:解题思路:可以看我写的题解 https://blog.csdn.net/weixin_61067952/article/details/131122831?spm=1001.2014.3001.5…… 题解列表 2023年06月09日 0 点赞 0 评论 574 浏览 评分:9.9
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a=sorted(a)for i in a: print(i,end=" ")…… 题解列表 2023年06月09日 0 点赞 0 评论 636 浏览 评分:0.0
弟弟的作业(C语言) 摘要:#include<stdio.h> #include<string.h> int main() { int a, b , e; char c; int k; int s…… 题解列表 2023年06月09日 0 点赞 0 评论 405 浏览 评分:0.0