阿尔法乘积——python
摘要:解题思路:注意事项:参考代码:def xh(n): if len(n) == 1: return int(n) else: a = 1 n = n……
python-阿尔法乘积
摘要:解题思路:注意事项:读取输入时不加strip()只能得到91分。参考代码:def f(n):
while(len(n) != 1):
&nbs
(fly)1605: 蓝桥杯算法训练VIP-阿尔法乘积(python,递归)
摘要:解题思路:注意事项:参考代码:n=input().strip()
def alpha(n):
if len(n)==1:
return n
else:
……
编写题解 1605: 蓝桥杯算法训练VIP-阿尔法乘积
摘要:解题思路:注意事项:参考代码:def alpha(m): sum=1 for i in m: if i=='0': continue ……