Leetcode

Leetcode 1413. Minimum Value to

2021-02-20  本文已影响0人  SnailTyan

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Minimum Value to Get Positive Step by Step Sum

2. Solution

class Solution:
    def minStartValue(self, nums):
        min_value = nums[0]
        total = 0
        for num in nums:
            total += num
            if total < min_value:
                min_value = total
        if min_value >= 1:
            return 1
        else:
            return 1 - min_value
class Solution:
    def minStartValue(self, nums):
        min_value = 0
        total = 0
        for num in nums:
            total += num
            if total < min_value:
                min_value = total
        return 1 - min_value

Reference

  1. https://leetcode.com/problems/minimum-value-to-get-positive-step-by-step-sum/
上一篇 下一篇

猜你喜欢

热点阅读