

def sort_copy(lst):
    """ Return a copy of lst with its elements in sorted order.
    Pre: lst is not empty and contains only numbers. """
    
        
def sort_inplace(lst):
    """ Sort lst in place.
    Pre: lst is not empty and contains only numbers. """
