Leetcode 1413. Minimum Value to Get Positive Step by Step Sum

2021-03-02 16:30:17 浏览数 (1)

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

1. Description

2. Solution

  • Version 1
代码语言:javascript复制
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
  • Version 2
代码语言:javascript复制
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/

0 人点赞