Skip to content

Commit 31ea572

Browse files
authored
Added solution for 1749
1 parent 0201191 commit 31ea572

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
use std::cmp;
2+
3+
impl Solution {
4+
// Keep calculating sum and keep tracking when the sum was minimum and maximum throughout the loop. Result is the difference between the max sum and min sum
5+
pub fn max_absolute_sum(nums: Vec<i32>) -> i32 {
6+
let mut min = 0;
7+
let mut max = 0;
8+
let mut current_sum = 0;
9+
10+
for num in nums {
11+
current_sum += num;
12+
min = cmp::min(current_sum, min);
13+
max = cmp::max(current_sum, max);
14+
}
15+
16+
return max - min;
17+
}
18+
}

0 commit comments

Comments
 (0)