mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
13 lines
237 B
C#
13 lines
237 B
C#
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;
|
|
}
|
|
}
|