Day 2 Puzzle
Fix the function so that
solve()
returns the sum of the even numbers in the list.
def solve(): numbers = [3, 5, 2, 4, 7] return sum(numbers)
Run
🎉 Your code works. Accidentally impressive.