0 out of 464 challenges solved

Find Even Numbers

Write a Python function `find_even_numbers(numbers)` that takes a list of integers as input and returns a new list containing only the even numbers from the input list.

#### Example Usage
```python [main.nopy]
find_even_numbers([1, 2, 3, 4, 5])  # Output: [2, 4]
find_even_numbers([4, 5, 6, 7, 8, 0, 1])  # Output: [4, 6, 8, 0]
find_even_numbers([8, 12, 15, 19])  # Output: [8, 12]
```
def find_even_numbers(numbers):
    """
    This function takes a list of integers and returns a list of even numbers.

    Args:
    numbers (list): A list of integers.

    Returns:
    list: A list containing only the even integers from the input list.
    """
    # Placeholder for the solution
    pass