题解 1169: 绝对值排序

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

筛选

绝对值排序 (Python代码)

摘要: # 优化思路: # 因为输入的第一个数字表示元素个数,所以,在将其内容存进列表时, # 存入的个数最好是按照第一个数的值来存入,而不是比较输入数字的 # 个数来存。这样的话,如果输……

好久不写了练练手

摘要:解题思路:首先看输入格式,是不限制输入次数,那就while接收,不放心就再加个try-except,这一题空间限制很小,那干脆多占点空间换时间了,接收每一组数据后化为整型,然后截去第一位计数用的,留下……

编写题解 1169: 绝对值排序

摘要:while True:     a=list(map(int,input().split()))     if a[0] == 0:         break     a = a[1:] ……

最短的代码

摘要:while True:     line = input().strip()     if line == '0':         break     numbers = l……

绝对值排序-题解(Python代码)

摘要:用sorted()函数将绝对值从大到小排序,返回一个排序后的新列表 ```python import math while True: lit=list(map(int,input()……

编写题解 1169: 绝对值排序

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

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……