<p>You are given a <strong>0-indexed</strong> integer array <code>nums</code>. There exists an array <code>arr</code> of length <code>nums.length</code>, where <code>arr[i]</code> is the sum of <code>|i - j|</code> over all <code>j</code> such that <code>nums[j] == nums[i]</code> and <code>j != i</code>. If there is no such <code>j</code>, set <code>arr[i]</code> to be <code>0</code>.</p>
<p><strong>Note:</strong> This question is the same as <ahref="https://leetcode.com/problems/intervals-between-identical-elements/description/"target="_blank"> 2121: Intervals Between Identical Elements.</a></p>