Concatenate and Sort Function

  • Share this:

Code introduction


A function to concatenate two arguments and then sort the combined list


Technology Stack : Built-in function sorted

Code Type : Sort function

Code Difficulty : Intermediate


                
                    
def aordify(arg1, arg2):
    return sorted(arg1 + arg2)