自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:def function(a, b): c = min(a, b) max_GCD = 0 for i in range(1, c + 1)…… 题解列表 2024年04月18日 0 点赞 0 评论 390 浏览 评分:0.0
自定义函数处理素数 摘要:解题思路:注意事项:参考代码:def function(x): for i in range(2, x): if x % i == 0: &nbs 题解列表 2024年04月18日 0 点赞 0 评论 713 浏览 评分:0.0
二维数组的转置 摘要:解题思路:注意事项:参考代码:def function(arr): list = [] for j in range(3): str = "" 题解列表 2024年04月18日 0 点赞 0 评论 331 浏览 评分:0.0
自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:def function(x): aeiou = "aeiou" str = [] for i in x: if i 题解列表 2024年04月18日 0 点赞 0 评论 166 浏览 评分:0.0
自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:def function(x): return print(' '.join(x)) if __name__ == '__main…… 题解列表 2024年04月18日 0 点赞 0 评论 185 浏览 评分:0.0
自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:def function(x): a, b, c, d = 0, 0, 0, 0 for i in x: if i.isalpha(…… 题解列表 2024年04月18日 0 点赞 0 评论 346 浏览 评分:0.0
自定义函数之整数处理 摘要:解题思路:注意事项:先交换大的,再交换小的。参考代码:arr = list(map(int, input().split())) max_number = max(arr) min_number …… 题解列表 2024年04月18日 0 点赞 0 评论 628 浏览 评分:0.0
自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:n = int(input()) arr = list(map(str, input().split())) m = int(input()) print('…… 题解列表 2024年04月18日 0 点赞 0 评论 415 浏览 评分:0.0
3156: 蓝桥杯2023年第十四届省赛真题-景区导游 摘要:解题思路:利用公式dis[a]-dis[b]-2*dis[lca(a,b)]求出a与b之间的距离,dis为此节点到根节点的距离注意事项:参考代码:#include<bits/stdc++.h> us…… 题解列表 2024年04月18日 0 点赞 0 评论 381 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年04月18日 0 点赞 0 评论 216 浏览 评分:0.0