1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/cs/find-the-highest-altitude.cs

14 lines
237 B
C#
Raw Normal View History

public class Solution {
public int LargestAltitude(int[] gain) {
int m = 0;
int alt = 0;
foreach (var d in gain) {
alt += d;
m = Math.Max(m, alt);
}
return m;
}
}