mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-25 12:14:26 +08:00
13 lines
175 B
Go
13 lines
175 B
Go
package leetcode
|
|
|
|
func largestAltitude(gain []int) int {
|
|
max, height := 0, 0
|
|
for _, g := range gain {
|
|
height += g
|
|
if height > max {
|
|
max = height
|
|
}
|
|
}
|
|
return max
|
|
}
|