1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/java/reduction-operations-to-make-the-array-elements-equal.java

16 lines
315 B
Java
Raw Normal View History

class Solution {
public int reductionOperations(int[] nums) {
Arrays.sort(nums);
int counter = 0;
for (int i = nums.length - 1; i > 0; --i) {
if (nums[i - 1] != nums[i]) {
counter += nums.length - i;
}
}
return counter;
}
}