0 out of 68 challenges solved

Count the frequency of each element in the given list

from collections import Counter

def count_element_frequency(lst):
    """
    Counts the frequency of each element in the given list.

    Args:
    lst (list): The input list.

    Returns:
    dict: A dictionary containing the frequency of each element.
    """
    # TODO: Implement the count_element_frequency function
    pass