LeetCode 1785. Minimum Elements to Add to Form a Given Sum
You are given an integer array nums
and two integers limit
and goal
. The array nums
has an interesting property that abs(nums[i]) <= limit
.
Return the minimum number of elements you need to add to make the sum of the array equal to goal
. The array must maintain its property that abs(nums[i]) <= limit
.
Note that abs(x)
equals x
if x >= 0
, and -x
otherwise.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 10^5
1 <= limit <= 10^6
-limit <= nums[i] <= limit
-10^9 <= goal <= 10^9
Solution:
PreviousLeetCode 1784. Check if Binary String Has at Most One Segment of OnesNextLeetCode 1786. Number of Restricted Paths From First to Last Node
Last updated