Challenge: Dosage Calculator for Multiple Patients
Building on your previous experience with function-based dosage calculations and handling patient data, you are now ready to tackle a more complex scenario: calculating medication dosages for multiple patients at once. In real pharmacy practice, you often need to process a list of patients, each with individual characteristics such as name, weight, and prescribed dose per kilogram. Efficiently iterating through this data and producing accurate results is essential for patient safety and effective workflow management.
Swipe to start coding
Write a function that processes a list of patient dictionaries, each containing name, weight_kg, and dose_per_kg. The function must:
- Calculate the total dose for each patient by multiplying
weight_kgbydose_per_kg. - Return a list of dictionaries, each with the patient's
nameand theircalculated_dose. - Print the name of the patient with the highest calculated dose.
Solution
Thanks for your feedback!
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 4.76
Challenge: Dosage Calculator for Multiple Patients
Swipe to show menu
Building on your previous experience with function-based dosage calculations and handling patient data, you are now ready to tackle a more complex scenario: calculating medication dosages for multiple patients at once. In real pharmacy practice, you often need to process a list of patients, each with individual characteristics such as name, weight, and prescribed dose per kilogram. Efficiently iterating through this data and producing accurate results is essential for patient safety and effective workflow management.
Swipe to start coding
Write a function that processes a list of patient dictionaries, each containing name, weight_kg, and dose_per_kg. The function must:
- Calculate the total dose for each patient by multiplying
weight_kgbydose_per_kg. - Return a list of dictionaries, each with the patient's
nameand theircalculated_dose. - Print the name of the patient with the highest calculated dose.
Solution
Thanks for your feedback!
single