蓝桥杯算法提高VIP-输出九九乘法表-题解(Python代码) 摘要:print(" Nine-by-nine Multiplication Table")#复制粘贴 print("--------------------------------------")#复…… 题解列表 2020年03月09日 0 点赞 0 评论 866 浏览 评分:0.0
王牌花色-题解(Python代码) 摘要: count = int(input()) def judge(card1, card2): get_number1 = card1[0] …… 题解列表 2020年03月08日 0 点赞 1 评论 693 浏览 评分:4.0
汪汪与打针 -题解(Python代码) 摘要: def func(a, b): money = a # 汪汪的钱数 count = 0 # 妙三多的次数 num = 0 # 总的次数 …… 题解列表 2020年03月08日 0 点赞 0 评论 558 浏览 评分:9.9
蓝桥杯算法提高VIP-身份证排序-题解(Python代码) 摘要:```python times = int(input()) id = [] for i in range(times): id.append(input()) re = sor…… 题解列表 2020年03月08日 0 点赞 0 评论 1005 浏览 评分:9.9
蓝桥杯算法提高VIP-计算时间-题解(Python代码) 9行走 摘要:```python times = int(input()) sec = [] for i in range(times): sec.append(int(input())) f…… 题解列表 2020年03月08日 0 点赞 2 评论 297 浏览 评分:0.0
C语言训练-阶乘和数*-题解(Python代码) 摘要:就是按部就班的遍历 最后字典方式排序输出,就是将每一个数字都转换为字符串,然后排序输出 answer_list = [] # 需要一个求阶乘的函数 def func…… 题解列表 2020年03月08日 0 点赞 0 评论 721 浏览 评分:7.0
C语言训练-阶乘和数*-题解(Python代码) 摘要:就是按部就班的遍历 最后字典方式排序输出,就是将每一个数字都转换为字符串,然后排序输出 answer_list = [] # 需要一个求阶乘的函数 def …… 题解列表 2020年03月08日 0 点赞 0 评论 572 浏览 评分:0.0
蓝桥杯算法训练-二进制数数-题解(Python代码) Python的bin()函数的返回值为Str型 摘要:用Python的bin()方法,将十进制数转换成二进制数,再用count方法统计‘1’出现的次数即可。 ```python l,r = map(int,input().split()) # 由…… 题解列表 2020年03月08日 0 点赞 0 评论 871 浏览 评分:9.9
[出圈]-题解(Python代码) 摘要: while True: n_number, m_number = map(int, input().split()) # 输入人数和m people_num…… 题解列表 2020年03月07日 0 点赞 0 评论 1117 浏览 评分:9.9
[亲和数]-题解(Python代码) 摘要: test_count = int(input()) answer_list = [] # 存放每一组的结果 def getSum(number): …… 题解列表 2020年03月07日 0 点赞 0 评论 1676 浏览 评分:8.0