Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAA solution to last week’s challenge can be found here.
How often do you have to create a new list based on another one?
This is what we are doing in this challenge.
The following dataset contains information about shows on Netflix. Use the dataset to create a new list with the following information:
- Categories (Action and Adventure, Documentaries, etc.)
- Type
- Title
- Release Year
- Rating
- Duration
This list should only contain international movies arranged in order by the year of release and duration.
But if you sort by the original duration field and don't use dictionary order, order matches output:
Many ways to do this one.