• + 0 comments
    def bigSorting(unsorted):
        # Write your code here
        return sorted(unsorted, key=lambda x: (len(x), x))