Problem · Greedy
Find Maximum Even Sum
Learn this problemProblem statement
The goal is to find the maximum possible even sum of values of tags that can be chosen.
Note:
Function
findMaximumEvenSum(val: int[]) → intExamples
Example 1
val = [2, 3, 6, -5, 10, 1, 1]return = 22
The tags [2, 3, 6, 10, 1] sum to 22 which is even and is the maximum possible. Hence, the answer is 22.
Constraints
🥑🥑