Absolute Sorting

Absolute Sorting

让我们试试排序。下面是具有特定规则的序列。

序列中有各种数字。您应该对其进行排序,但是要按照绝对值升序进行排序。例如,序列(-20, -5, 10, 15)将这样排序:(-5, 10, 15, -20).您的函数应该返回排序后的 列表(list) 或元组(tuple)

example

输入: 列表 (List)整数 (int)...

You should be an authorized user in order to see the full description and start solving this mission.
45