0 out of 68 challenges solved

Create a dictionary where the values are the squares of the original values

def square_dict_values(dictionary):
    """
    Creates a new dictionary where the values are the squares of the original values.

    Args:
    dictionary (dict): The input dictionary.

    Returns:
    dict: A new dictionary with the squared values.
    """
    # TODO: Implement the square_dict_values function
    pass