题解 1518: 蓝桥杯算法提高VIP-寻找三位数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

python-寻找三位数

摘要:解题思路:a = [123:329]进行遍历,b = a*2,c = a*3sum = str(a)+str(b)+str(c)if len(set(sum)) == 9 and '0&#39……

蓝桥杯专题系列-1518(Python)

摘要:解题思路:全排列注意事项:死办法,没什么可以多剖析的参考代码:import itertoolslst = [i for i in range(1, 10)]for data in itertools.……

寻找三位数

摘要:解题思路:注意事项:参考代码:for i in range(100,334):    a = 2*i    b = 3*i    if len(set(str(a)+str(b)+str(i))) =……

花落的新手代码(C语言代码)~

摘要:解题思路:192,384,576219,438,657263,526,789273,546,819327,654,981这是输出结果,但是提示答案不对,有大神可以指点一下吗?注意事项:参考代码:#in……