Merging and Sorting Two Lists Function

  • Share this:

Code introduction


This function merges two lists and sorts them using the sorted function


Technology Stack : sorted function

Code Type : Function

Code Difficulty : Intermediate


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