0 out of 68 challenges solved

Count the number of vowels in a given string

def count_vowels(string):
    """
    Counts the number of vowels in a given string.

    Args:
    string (str): The input string.

    Returns:
    int: The count of vowels in the string.
    """
    # TODO: Implement the count_vowels function
    pass