使用最低值减少


9

挑战

创建一个函数,该函数接受一个数字数组,并从每个元素中减去该数组中尚未从另一个元素中减去的最低元素。

  • 使用最小值后,将无法再次使用。
  • 数组中的数字是十进制数字,不一定是整数。

例:

Input: [6, 4, 7, 8, 9, 2, 1, 4]

Next lowest value:          Output:
[6, 4, 7, 8, 9, 2, 1, 4]    [6, 4, 7, 8, 9, 2, 1, 4]
                   ^         ^
                            6-1 = 5
[6, 4, 7, 8, 9, 2, -, 4]    [5, 4, 7, 8, 9, 2, 1, 4]
                ^               ^
                            4-2 = 2
[6, 4, 7, 8, 9, -, -, 4]    [5, 2, 7, 8, 9, 2, 1, 4]
    ^                              ^
                            7-4 = 3
[6, -, 7, 8, 9, -, -, 4]    [5, 2, 3, 8, 9, 2, 1, 4]
                      ^               ^
                            8-4 = 4
[6, -, 7, 8, 9, -, -, -]    [5, 2, 3, 4, 9, 2, 1, 4]
 ^                                       ^
                            9-6 = 3
[-, -, 7, 8, 9, -, -, -]    [5, 2, 3, 4, 3, 2, 1, 4]
       ^                                    ^
                            2-7 = -5
[-, -, -, 8, 9, -, -, -]    [5, 2, 3, 4, 3,-5, 1, 4]
          ^                                    ^
                            1-8 = -7
[-, -, -, -, 9, -, -, -]    [5, 2, 3, 4, 3,-5,-7, 4]
             ^                                    ^
                            4-9 = -5

Final output: [5, 2, 3, 4, 3, -5, -7, -5]

测试用例

Input: [6, 4, 7, 8, 9, 2, 1, 4] => Output: [5, 2, 3, 4, 3, -5, -7, -5]

Input: [4, 7, 4, 9, -10, 8, 40] => Output: [14, 3, 0, 2, -18, -1, 0]

Input: [0.25, -0.5, 8, 9, -10] => Output: [10.25, 0, 7.75, 1, -19]

Input: [3, 4, 9, 1, 1, 1, -5] => Output: [8, 3, 8, 0, -2, -3, -14]


这是 ,因此以字节为单位的最短答案会获胜。


4
这可以使用一个逐步示例。目前,该任务需要从测试用例中推断出来。
Laikoni

1
感谢@Arnauld花时间去做。自昨天以来,我一直无法使用该计算机,因此无法修改示例
Luis felipe De jesus Munoz

3
是否有特定原因在数组中包含非整数?它没有使挑战变得更有趣,没有排除一些方法,并且在没有非整数类型的语言中提出了一个大问题。
丹尼斯

Answers:






3

Ruby,32个字符

->a{a.zip(a.sort).map{|x,y|x-y}}

您可以只打印值:-> a {a.zip(a.sort){| x,y | p xy}}
GB

3

JavaScript(ES6),44个字节

a=>[...a].map(x=>x-a.sort((a,b)=>b-a).pop())

在线尝试!

已评论

a =>                 // given the input array a[]
  [...a]             // create a copy of a[]
  .map(x =>          // for each integer x in the copy:
    x -              //   update x by ...
    a.sort((a, b) => //     sorting the original array in descending order
      b - a          //     (we only need to sort it once, but it's shorter to do it here)
    ).pop()          //     taking the element at the top of a[] and subtracting it from x
  )                  // end of map()

3

Java 10,83个字节

a->{var b=a.clone();java.util.Arrays.sort(b);for(int i=0;i<a.length;a[i]-=b[i++]);}

修改输入数组,而不是返回一个新的数组以节省字节。

在线尝试。

说明:

a->{                         // Method with double-array parameter and no return-type
  var b=a.clone();           //  Create a copy of the input-array
  java.util.Arrays.sort(b);  //  Sort this copy
  for(int i=0;i<a.length;    //  Loop over the indices
    a[i]-=                   //   Subtract from the `i`'th item in the input-array:
          b[i++]);}          //    The `i`'th item of the sorted array


3

Python 3,42 40字节

lambda a:[b-c for b,c in zip(a,sorted(a))]

lambda a:[a.pop(0)-b for b in sorted(a)]

使用37个字节map
ovs

@ovs解决方案适用于Python3。它返回一个map对象,而不是列表。这是否是比赛要求的灰色地带?也许您可以将其作为自己的答案提交,因为它可能与资格完全不同。
mypetlion

@ovs规范还指出,输入不一定是ints,所以我将保持原样。
mypetlion

返回map对象是有效的,但非整数要求使我的建议无效。
ovs









1

Japt8 6字节

c í-Un

在这里尝试


说明

           :Implicit input of array U
c          :Flatten (simply creates a 2nd copy of the array because JavaScript's sort mutates the original array)
  í        :Interleave
    Un     :U sorted
   -       :Reduce each pair by subtraction

1

SmileBASIC,49个字节

DEF R A
DIM B[0]COPY B,A
SORT B
ARYOP 1,A,A,B
END

输入数组被修改到位。

ARYOP一次对整个阵列执行操作。在这种情况下,减去BA并存储结果A




By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.