LeetCode 1785. Minimum Elements to Add to Form a Given Sum
Input: nums = [1,-1,1], limit = 3, goal = -4
Output: 2
Explanation: You can add -2 and -3, then the sum of the array will be 1 - 1 + 1 - 2 - 3 = -4.Input: nums = [1,-10,9,1], limit = 100, goal = 0
Output: 1Solution:
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