about | help | code help+videos | done | prefs |
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) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 100 Post-solution available
Copyright Nick Parlante 2017 - privacy