• + 0 comments

    Python:

    def bigSorting(unsorted):
        unsorted.sort(key=lambda s: (len(s), s))
        return(unsorted)