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

 

tlsmith2@wsfcs.k12.nc.us > listGuessAverage
prev  |  next  |  chance

A teacher gives her students extra credit if they can guess the class average for a given test and their guess is within 5% of the average. Given a list of grades and the student's guess, return true if the student receives extra credit and false if they don't receive extra credit.


listGuessAverage([90, 80, 85], 85) → true
listGuessAverage([88, 78, 92], 92) → false
listGuessAverage([80], 75) → false

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

public boolean listGuessAverage(List<Integer> numsList, int guess) { }

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

Java Help

Misc Code Practice

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy