Class Solution
-
- All Implemented Interfaces:
public final class Solution1685 - Sum of Absolute Differences in a Sorted Array.
Medium
You are given an integer array
numssorted in non-decreasing order.Build and return an integer array
resultwith the same length asnumssuch thatresult[i]is equal to the summation of absolute differences betweennums[i]and all the other elements in the array.In other words,
result[i]is equal tosum(|nums[i]-nums[j]|)where0 <= j < nums.lengthandj != i( 0-indexed ).Example 1:
Input: nums = 2,3,5
Output: 4,3,5
Explanation: Assuming the arrays are 0-indexed, then
result0 = |2-2| + |2-3| + |2-5| = 0 + 1 + 3 = 4,
result1 = |3-2| + |3-3| + |3-5| = 1 + 0 + 2 = 3,
result2 = |5-2| + |5-3| + |5-5| = 3 + 2 + 0 = 5.
Example 2:
Input: nums = 1,4,6,8,10
Output: 24,15,13,15,21
Constraints:
<code>2 <= nums.length <= 10<sup>5</sup></code>
<code>1 <= numsi<= numsi + 1<= 10<sup>4</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntArraygetSumAbsoluteDifferences(IntArray nums)-
-
Method Detail
-
getSumAbsoluteDifferences
final IntArray getSumAbsoluteDifferences(IntArray nums)
-
-
-
-