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

 

tlsmith2@wsfcs.k12.nc.us homework-arraylist-02 > listClassRanks
prev  |  next  |  chance

An array list contains the high school class ranks of my students. If at least two of the students are in the top 10 of their class, order the array list elements from highest rank to lowest rank. Otherwise, order the array list elements from lowest rank to highest rank. Return the array list of class ranks. Hint: Don't forget about the methods in the Collections class.


listClassRanks([40, 25, 12, 35, 125, 300, 63]) → [300, 125, 63, 40, 35, 25, 12]
listClassRanks([35, 72, 5, 22, 78, 3]) → [3, 5, 22, 35, 72, 78]
listClassRanks([2, 56, 24, 100]) → [100, 56, 24, 2]

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

public List<Integer> listClassRanks(List<Integer> rankings) { }

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

Copyright Nick Parlante 2017 - privacy