标记一下这个题!!! 摘要:解题思路:注意事项:参考代码:*************************************************************************************…… 题解列表 2023年03月02日 0 点赞 0 评论 184 浏览 评分:0.0
【Python题解】字符串的修改 摘要:# 解题思路 1. 找到两个字符串的最长公共子序列,记录其长度为 `x`; 2. 计算结果:`res = max(l1, l2)-x` 其中 `l1` 和 `l2` 为两字符串的长度。 核心…… 题解列表 2023年03月02日 0 点赞 1 评论 356 浏览 评分:9.9
链表合并问题 摘要:解题思路:要实现两个链表的升序合并,我们首先要明确有几个函数:生成链表并读取数据的函数:目的是用来生成一个空链表,并输入的信息存储在链表的节点中;计算链表长度的函数:计算链表所含有数据节点的个数,不包…… 题解列表 2023年03月02日 0 点赞 2 评论 229 浏览 评分:9.9
2109基础解法(Python) 摘要:解题思路:基础的排序和贪心注意事项:测试用例过不了是什么鬼啊参考代码:k, m, n = map(int, input().split())lst = list(reversed(sorted(map…… 题解列表 2023年03月02日 0 点赞 0 评论 237 浏览 评分:0.0
不要想太多,这样简单 摘要:解题思路:基本C语言注意事项:无参考代码:#include<stdio.h>int main(){ int N; scanf("%d",&N); int a[N][N],i,j,J…… 题解列表 2023年03月02日 0 点赞 0 评论 193 浏览 评分:0.0
采购是我,我是才够 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double h; scanf("%lf",&h); doub…… 题解列表 2023年03月02日 0 点赞 0 评论 473 浏览 评分:9.9
递归进制转换(我是废物) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void print(int n){ if(n>7) print(n/8); printf("%d",n%8);}int m…… 题解列表 2023年03月02日 0 点赞 0 评论 167 浏览 评分:0.0
编写题解 1017: [编程入门]完数的判断 摘要:````c #include #define max 1001 int main() { int n,i,j,a[max],l; scanf("%d",&n); f…… 题解列表 2023年03月02日 0 点赞 0 评论 175 浏览 评分:0.0
还是不理解为啥错了 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int ans = 0,maxx,flag,l,k,q,p;…… 题解列表 2023年03月01日 0 点赞 0 评论 225 浏览 评分:0.0
c语言 ,这样做才简单!! 摘要:解题思路:基础C语言注意事项:无参考代码:#include<stdio.h>int main(){ int i,a[10]; for(i=0;i<10;i++) scanf("%d",&a…… 题解列表 2023年03月01日 0 点赞 0 评论 256 浏览 评分:0.0