题解 1218: 排列

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

筛选

排列 (Python代码)

摘要:代码完全符合题意,但是50%错,记得前面有个排序题我用for写的也是50%错 四位数首位如果不可以为零 ```python n=int(input()) for i in range(n)……

排列-题解(Python代码)

摘要:```python import itertools count = int(input()) while count > 0: ipt = input() # 每个数字之间有一个……