0945. Minimum Increment to Make Array Unique
https://leetcode.com/problems/minimum-increment-to-make-array-unique
Description
You are given an integer array nums
. In one move, you can pick an index i
where 0 <= i < nums.length
and increment nums[i]
by 1
.
Return the minimum number of moves to make every value in nums
unique.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 105
0 <= nums[i] <= 105
ac
Last updated