id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

centered_average


Return the "centered" average of a list of integers, which we'll say is the mean of the values, except ignoring the largest and smallest values in the list. If there are multiple copies of the smallest value, ignore just one copy, and likewise for the largest value. Use inegert division to produce the final average. You may assume that the list is length 3 or more.


centered_average([1, 2, 3, 4, 100]) → 3
centered_average([1, 1, 5, 5, 10, 8, 7]) → 5
centered_average([-10, -4, -2, -4, -2, 0]) → -3

...Save, Compile, Run (ctrl-enter)

def centered_average(nums):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 209 Post-solution available

Copyright Nick Parlante 2017 - privacy