0 out of 68 challenges solved

Find unique elements in a given list

def find_unique_elements(lst):
    """
    Finds the unique elements in a given list.

    Args:
        lst (list): The input list.

    Returns:
        list: A new list with the unique elements.
    """
    # TODO: Implement the find_unique_elements function
    pass