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

 

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

Three brother are very competitive and have a small wager on who is the best golfer this month. They have recorded their scores for the month in separate array lists. Return the name of the brother who has the lowest average for the month. If a brother has less than two scores, he does not have enough scores to qualify as the best golfer. At least one of the brothers will have enough scores to qualify.


golfingBrothers([70, 75, 80], [80, 82, 85], [90, 91, 92]) → "adam"
golfingBrothers([100, 75], [80, 82, 85, 86], [90, 91, 92]) → "bob"
golfingBrothers([70], [80, 82], [90, 91, 92]) → "bob"

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

public String golfingBrothers(List<Integer> adamList, List<Integer> bobList, List<Integer> craigList) { }

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: 200 Post-solution available

Copyright Nick Parlante 2017 - privacy