阿尔法乘积——python 摘要:解题思路:注意事项:参考代码:def xh(n): if len(n) == 1: return int(n) else: a = 1 n = n…… 题解列表 2023年03月30日 0 点赞 0 评论 50 浏览 评分:0.0
(fly)1605: 蓝桥杯算法训练VIP-阿尔法乘积(python,递归) 摘要:解题思路:注意事项:参考代码:n=input().strip() def alpha(n): if len(n)==1: return n else: …… 题解列表 2022年04月23日 0 点赞 0 评论 140 浏览 评分:0.0
满分阿尔法积 摘要:解题思路:巨坑一定要!!!!!!!!!strip()注意事项:参考代码:s=input().strip()while len(s)!=1: n=1 for i in s: i…… 题解列表 2022年03月30日 0 点赞 0 评论 172 浏览 评分:9.9
python-阿尔法乘积 摘要:解题思路:注意事项:读取输入时不加strip()只能得到91分。参考代码:def f(n): while(len(n) != 1): &nbs 题解列表 2022年01月23日 0 点赞 1 评论 321 浏览 评分:0.0
编写题解 1605: 蓝桥杯算法训练VIP-阿尔法乘积 摘要:解题思路:注意事项:参考代码:def alpha(m): sum=1 for i in m: if i=='0': continue …… 题解列表 2022年01月06日 0 点赞 0 评论 156 浏览 评分:0.0