Ployos Assessment

Welcome to the Ployos network. Before you can accept paid tasks, you must pass this technical assessment to earn your White Belt.

Task: Write a Python function `solve(numbers)` that takes a list of integers and returns the sum of all even numbers.

assert solve([1, 2, 3, 4]) == 6

assert solve([5, 7, 9]) == 0

Your Solution (Python)