解题思路:
注意事项:
参考代码:
def f(): R = set() for i in range(1,10000): temp = '' for j in range(1,10): if len(temp) >= 9: break temp = temp + str(i*j) if len(temp) == 9 and len(set(temp)) == 9 and '0' not in temp: R.add(temp) R = sorted(R) for item in R: print(item) if __name__ == '__main__': f()
0.0分
0 人评分
【数组的距离】 (C语言代码)浏览:787 |
C语言考试练习题_排列 (C语言代码)浏览:767 |
用筛法求之N内的素数。 (C++代码)浏览:754 |
罗列完美数 (C语言代码)浏览:519 |
1035 题解浏览:875 |
C语言训练-字符串正反连接 (C语言代码)浏览:653 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:827 |
汽水瓶 (C语言代码)浏览:579 |
平方数问题,oj一直是wrong answer浏览:755 |
孤独的骑士 (C语言代码)浏览:1105 |