
Absolute Sorting

让我们试试排序。下面是具有特定规则的序列。
序列中有各种数字。您应该对其进行排序,但是要按照绝对值升序进行排序。例如,序列(-20, -5, 10, 15)将这样排序:(-5, 10, 15, -20).您的函数应该返回排序后的数组(array) 。
输入: 数组 (Array)整数 (number).
输出:排序的数组 (array)的整数 (number)...
You should be an authorized user in order to see the full description and start solving this mission.