Well done!
You have completed Review Series Vectorization and Broadcasting!
Quiz Question 1 of 3
Consider the following code that keeps track of remaining laps in a highly critical application. What would the result look like?
remaining = {
'mario': 3,
'peach': 2,
'yoshi': 2,
}
completed = {
'peach': 1,
'bowser': 2,
}
remaining_laps = pd.Series(remaining)
completions = pd.Series(completed)
remaining_laps - completions
Choose the correct answer below: