Description
Solutions
Find Maximum Even Sum
🔥 FULLTIME📚RELATED PROBLEMS
The goal is to find the maximum possible even sum of values of tags that can be chosen.
Note:
Example 1:
Input: val = [2, 3, 6, -5, 10, 1, 1]
Output: 22
Explanation:The tags [2, 3, 6, 10, 1] sum to 22 which is even and is the maximum possible. Hence, the answer is 22.
Constraints:
🥑🥑

Related Problems
Testcase
Result
Case 1
input:
output: