Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEASpoiler!
I feel the provided output is actually incorrect. It removes all categories except "International Movies" (the instructions don't say to remove the other categories from the movie, only to filter to only International Movies), and it doesn't sort by duration after sorting by release date. My answer gives the output the challenge actually asks for. :)
Below is the instructions for the challenge #337, please see the text in bold
Weekly Challenge #337
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.
I added a text entry for easier selection of film types "in the real world".
The solution provided in the start files does not sort by duration.