0
/ 3.0
Return the centered average of an array of int
s, which we'll say is the mean average of the values, except ignoring the largest and...
Return the centered average of an array of int
s, which we'll say is the mean average of the values, except ignoring the largest and smallest values in the array. If there are multiple copies of the smallest value, ignore just one copy, and likewise for the largest value. Use int
division to produce the final average. You may assume that the array has a length of 3 or more.
Your feedback will appear here when you check your answer.