Concatenate and Sort Strings

  • Share this:

Code introduction


Concatenates two string arguments and returns a sorted list of the concatenated string.


Technology Stack : Concatenates two string arguments and returns a sorted list of the concatenated string.

Code Type : Sort function

Code Difficulty : Intermediate


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