绝对值排序 (Python代码) 摘要: # 优化思路: # 因为输入的第一个数字表示元素个数,所以,在将其内容存进列表时, # 存入的个数最好是按照第一个数的值来存入,而不是比较输入数字的 # 个数来存。这样的话,如果输…… 题解列表 2020年03月23日 0 点赞 0 评论 1221 浏览 评分:10.0
好久不写了练练手 摘要:解题思路:首先看输入格式,是不限制输入次数,那就while接收,不放心就再加个try-except,这一题空间限制很小,那干脆多占点空间换时间了,接收每一组数据后化为整型,然后截去第一位计数用的,留下…… 题解列表 2025年01月04日 1 点赞 0 评论 97 浏览 评分:10.0
编写题解 1169: 绝对值排序 摘要:while True: a=list(map(int,input().split())) if a[0] == 0: break a = a[1:] …… 题解列表 2021年12月20日 0 点赞 0 评论 301 浏览 评分:8.0
最短的代码 摘要:while True: line = input().strip() if line == '0': break numbers = l…… 题解列表 2023年10月18日 0 点赞 0 评论 96 浏览 评分:7.3
绝对值排序-题解(Python代码) 摘要:用sorted()函数将绝对值从大到小排序,返回一个排序后的新列表 ```python import math while True: lit=list(map(int,input()…… 题解列表 2020年04月11日 0 点赞 1 评论 652 浏览 评分:7.3
编写题解 1169: 绝对值排序 摘要:解题思路:注意事项:参考代码:while True: a = list(map(int,input().split())) if a[0]==0: break else…… 题解列表 2022年06月04日 0 点赞 0 评论 91 浏览 评分:0.0
用冒泡排序做的,没有时间超限 摘要:解题思路:注意事项:参考代码:while True: li=list(map(int,input().split())) if li[0]==0: break else…… 题解列表 2024年03月11日 0 点赞 0 评论 66 浏览 评分:0.0
绝对值排序-题解(Python代码) 摘要:参考代码:ls = [int(i) for i in input().split()] while ls[0] != 0: lt = ls[1:] lt.sort(key = l…… 题解列表 2021年01月23日 0 点赞 0 评论 233 浏览 评分:0.0
1169: 绝对值排序 摘要:解题思路:注意事项:参考代码:while True: try: n = list(map(int, input().split())) a = n[1:]…… 题解列表 2024年04月08日 0 点赞 0 评论 104 浏览 评分:0.0
1169: 绝对值排序(sort) 摘要:解题思路: 核心:l.sort(key=abs, reverse=True)注意事项: 去掉绝对值最大的数参考代码:while True: l = [int(x) for x i…… 题解列表 2024年08月17日 0 点赞 0 评论 79 浏览 评分:0.0