题解 1219: 数列排序

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

筛选

1219: 数列排序

摘要:解题思路:注意事项:参考代码:N = int(input()) for _ in range(N):     arr = list(map(int, input().split()))     ……

数列排序(python)

摘要:解题思路:注意事项:参考代码:n=int(input())for _ in range(n):    nums=list(map(int,input().split()))    left=[]   ……

数列排序python

摘要:解题思路:注意事项:比第一个数字小的在左边,大的在右边,但并没有排序参考代码:n = int(input())for i in range(n):    L = list(map(int,input(……

编写题解 1219: 数列排序

摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n):     ls=list(map(int,input().split()))     t=ls[0……

1219: 数列排序

摘要:```python n = int(input()) for i in range(n): st1, st2 = '', '' lis = list(map(str, inpu……

数列排序-题解(Python代码)

摘要:```python num = int(input()) while num > 0: ipt = input().split() # 创建列表list1,用于存放排序后的元素 ……