题解列表
[编程入门]选择排序
摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a=sorted(a)for i in a: print(i,end=" ")……
弟弟的作业(C语言)
摘要:#include<stdio.h>
#include<string.h>
int main() {
int a, b , e;
char c;
int k;
int s……
1043: [编程入门]三个数字的排序
摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a=sorted(a)for i in a: print(i,end=" ")……
优质题解
预处理 + 双端队列
摘要:# 预处理 + 单调队列 + 滑动窗口
## 前言
俗话说的好,先易后难。我们先看一下这道题的一维版本:[1438. 绝对差不超过限制的最长连续子数组
](https://leetcode.cn……
A+B Problem(python)
摘要:解题思路:这题很简单,用map()函数输入两个值再直接相加即可注意事项:参考代码:x,y=map(int,input().split())print(x+y)……
统计数字字符个数(python)
摘要:解题思路:注意事项:参考代码:a=input()s=[]for i in a: if i in'1234567890': s.append(i)print(len(……