Skip to content
Advertisement

How to sort the contents of a list?

I have the following list:

JavaScript

I need to make a list of book titles ordered by year, with the underscore character and the year removed. For example, the first book title should be “SecretOfChimneys”. Call your list booktitles.

Is there a way to use the fact that titles are already sorted by year in books and just select the tiles from that?

Or should I use a sorting algorithm with filename?

Any help would be appreciated, thank you!

Advertisement

Answer

You can use a lambda as the key when sorting. Then use a list comprehension to extract just the title from the sorted list.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement