1169基础解法(Python) 摘要:注意事项:因为sys.stdin直接读取输入流,则第一项是什么对我们而言不太重要,只需要判断这个列表是否为空即可因为是绝对值的大小排序,选用sorted()函数中的key参数设定排序的指标为abs()…… 题解列表 2022年11月06日 0 点赞 0 评论 71 浏览 评分:0.0
python解决绝对值排序 摘要:注意事项:注意题目要求一行代码输入参考代码:while 1: a = list(eval((input()+' ').replace(' ', ',&…… 题解列表 2021年04月07日 0 点赞 0 评论 283 浏览 评分:0.0
绝对值排序 摘要:解题思路:分别用列表来存放数据的原值和绝对值注意事项:参考代码:while True: try: L = list(map(int,input().split())) …… 题解列表 2023年03月21日 0 点赞 0 评论 89 浏览 评分:0.0
python 容易理解 摘要:解题思路:注意事项:参考代码:ls =list(map(int,input().split()))while ls[0] != 0: lt = ls[1:] b=[] for i i…… 题解列表 2022年01月27日 0 点赞 0 评论 156 浏览 评分:0.0
绝对值排序(python) 摘要:解题思路:注意事项:参考代码:while True: nums = list(map(int, input().split())) n = nums[0] if n == 0: …… 题解列表 2023年12月18日 0 点赞 0 评论 102 浏览 评分:0.0
编写题解 1169: 绝对值排序 摘要:解题思路:注意事项:参考代码:while True: a = list(map(int,input().split())) if a[0]==0: break else…… 题解列表 2022年06月04日 0 点赞 0 评论 98 浏览 评分:0.0
1169: 绝对值排序(sort) 摘要:解题思路: 核心:l.sort(key=abs, reverse=True)注意事项: 去掉绝对值最大的数参考代码:while True: l = [int(x) for x i…… 题解列表 2024年08月17日 0 点赞 0 评论 91 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python def solve_sort(li): new_li = list(map(int, li[1:])) new_li.sort(key=abs, revers…… 题解列表 2024年03月24日 0 点赞 0 评论 114 浏览 评分: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 评论 236 浏览 评分:0.0
无聊的星期六 摘要:解题思路: 将读取的字符串放到数组里面,删除第一个数字 生成两个列表,一个放负数,一个放排序好的 判断两个表哪几个值一样然后替换掉他的负数注意事项: 属于是有点脱裤子放屁,但是…… 题解列表 2024年04月14日 0 点赞 0 评论 89 浏览 评分:0.0