Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Find Most Improved Athlete | Team Performance Analysis
Python for Coaches

bookChallenge: Find Most Improved Athlete

Coaches often want to recognize athletes who show the most progress. Automate the process of finding the most improved athlete.

Task

Swipe to start coding

Write a function that takes a list of athlete records, where each record contains a name, a list of first_half scores, and a list of second_half scores. The function should return the name of the athlete with the largest increase in average score from the first half to the second half.

  • Calculate the average score for first_half and second_half for each athlete.
  • Determine the difference between the second half and first half averages.
  • Identify which athlete has the greatest positive difference.
  • Return the name of that athlete.

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 3
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Suggested prompts:

How can I define or measure "most improved" for the athletes?

Can you show me an example of the data I should use for this process?

What kind of output or report do you want after identifying the most improved athlete?

close

bookChallenge: Find Most Improved Athlete

Swipe to show menu

Coaches often want to recognize athletes who show the most progress. Automate the process of finding the most improved athlete.

Task

Swipe to start coding

Write a function that takes a list of athlete records, where each record contains a name, a list of first_half scores, and a list of second_half scores. The function should return the name of the athlete with the largest increase in average score from the first half to the second half.

  • Calculate the average score for first_half and second_half for each athlete.
  • Determine the difference between the second half and first half averages.
  • Identify which athlete has the greatest positive difference.
  • Return the name of that athlete.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 3
single

single

some-alt