Easy
Given an array nums, pick a positive start value. The step-by-step total (start plus a running prefix of nums) must never drop below 1. Return the minimum positive start value.
Input: nums = [-3,2,-3,4,2] Output: 5
Input: nums = [1,2] Output: 1
Input: nums = [1,-2,-3] Output: 5