辗转相除法求最小公倍数 摘要: #include #include int min_gbs(int n,int m) { int t; while(n%m)…… 题解列表 2024年03月24日 0 点赞 0 评论 260 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python def select_sort(li): n = len(li) for i in range(n): # 多一次循环 for j in …… 题解列表 2024年03月24日 0 点赞 0 评论 335 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python # 利用map函数和list把输入转为int型列表 li = list(map(int, input().split())) li.sort() # 利用内置函数进行排序…… 题解列表 2024年03月24日 0 点赞 0 评论 244 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python a = input() b = input() c = input() word = [a, b, c] word.sort() # sort函数可以对数字排序 也…… 题解列表 2024年03月24日 0 点赞 0 评论 672 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python # 注意的还是列表的输入 这里需要map和list一起接收一个int型的列表 li = list(map(int, input().split())) li.sort()…… 题解列表 2024年03月24日 0 点赞 0 评论 430 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接d题解(肥肠de简单) 摘要:解题思路:giao注意事项:giao参考代码:a=input()b=input()print(f"{a} {b}")…… 题解列表 2024年03月24日 0 点赞 0 评论 211 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python def solve_sort(li): new_li = list(map(int, li[1:])) new_li.sort(key=abs, revers…… 题解列表 2024年03月24日 0 点赞 0 评论 396 浏览 评分:0.0
1212: 年会(树形dp) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; struct node { int to; int next; }mp[100005…… 题解列表 2024年03月24日 0 点赞 0 评论 240 浏览 评分:0.0
检查一个数是否为质数 摘要: #include int main() { int n; scanf("%d",&n); int i,j; …… 题解列表 2024年03月24日 0 点赞 0 评论 203 浏览 评分:0.0
求组合数常规思想 摘要: #include long long func1(int n,int m) { int i; long long sum=1; …… 题解列表 2024年03月24日 0 点赞 0 评论 265 浏览 评分:0.0