Skip to content

Commit b978fdd

Browse files
authored
Added solution for 1262
1 parent f35fe00 commit b978fdd

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
use std::cmp;
2+
3+
impl Solution {
4+
5+
// Add all numbers and store these 4 numbers: smallest_mod_1, second_smallest_mod_1, smallest_mod_2, second_smallest_mod_2. If sum % 3 == 0, return sum. If sum % 3 == 1, return max of (sum - smallest_mod_1) and (sum - (smallest_mod_2 + second_smallest_mod_2)). If sum % 3 == 2, return max of (sum - smallest_mod_2) and (sum - (smallest_mod_1 + second_smallest_mod_1))
6+
pub fn max_sum_div_three(nums: Vec<i32>) -> i32 {
7+
let mut sum = 0;
8+
let mut smallest_mod_1 = 4000;
9+
let mut second_smallest_mod_1 = 4000;
10+
let mut smallest_mod_2 = 4000;
11+
let mut second_smallest_mod_2 = 4000;
12+
13+
for i in nums {
14+
sum += i;
15+
16+
if (i % 3 == 1 && i <= second_smallest_mod_1) {
17+
if i <= smallest_mod_1 {
18+
second_smallest_mod_1 = smallest_mod_1;
19+
smallest_mod_1 = i;
20+
} else {
21+
second_smallest_mod_1 = i;
22+
}
23+
}
24+
25+
if (i % 3 == 2 && i <= second_smallest_mod_2) {
26+
if i < smallest_mod_2 {
27+
second_smallest_mod_2 = smallest_mod_2;
28+
smallest_mod_2 = i;
29+
} else {
30+
second_smallest_mod_2 = i;
31+
}
32+
}
33+
}
34+
35+
if sum % 3 == 0 {
36+
return sum;
37+
} else if sum % 3 == 1 {
38+
return cmp::max(sum - (smallest_mod_2 + second_smallest_mod_2), sum - smallest_mod_1);
39+
} else {
40+
return cmp::max(sum - (smallest_mod_1 + second_smallest_mod_1), sum - smallest_mod_2);
41+
}
42+
}
43+
}

0 commit comments

Comments
 (0)