Post

leetcode(리트코드)-1732 Find the Highest Altitude(PYTHON)

leetcode(리트코드)-1732 Find the Highest Altitude(PYTHON)

leetcode 1732 - Find the Highest Altitude 문제입니다.

1. 문제

https://leetcode.com/problems/find-the-highest-altitude/


2. Input , Output


3. 분류 및 난이도

Eazy 난이도 문제입니다.


4. 문제 해석

  • gain이 주어집니다.
  • 주어진 숫자를 더해 나갈 때 가장 큰 값을 리턴하세요.
  • 단, 0보다는 커야합니다. 0보다 작을 경우 0을 리턴합니다.

5. code

코드설명

python

1
2
3
4
5
6
7
8
9
10
class Solution:
    def largestAltitude(self, gain: List[int]) -> int:
        res = 0 
        tmpsum = 0
        for i in range(len(gain)):
            tmpsum += gain[i]
            res = max(tmpsum,res)
        return res
            
                     

6. 결과 및 후기, 개선점

필요시 c++로 짜드립니다.

설명이 필요하다면 댓글을 달아주세요.

This post is licensed under CC BY 4.0 by the author.