题解 1169: 绝对值排序

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

筛选

1169: 绝对值排序

摘要:解题思路:注意事项:参考代码:while True:     try:         n = list(map(int, input().split()))         a = n[1:]……

1169: 绝对值排序(sort)

摘要:解题思路:    核心:l.sort(key=abs, reverse=True)注意事项:    去掉绝对值最大的数参考代码:while True:     l = [int(x) for x i……

python 容易理解

摘要:解题思路:注意事项:参考代码:ls =list(map(int,input().split()))while ls[0] != 0:    lt = ls[1:]    b=[]    for i i……

用sort函数解决问题

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool cmp(int a,int b){ return abs(a)>abs(b……