about | help | code help+videos | done | prefs |
noMax
Complete the function so that it removes the largest value from the list and then returns it. All the other values in the list should remain in the same relative positions. The parameter will have no duplicate values. The parameter will have at least one number in it. noMax([4, 2, 9, 8]) → [4, 2, 8] noMax([88, 4, 71]) → [4, 71] noMax([13, -3, 24, 6, 25]) → [13, -3, 24, 6] ...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: 200
Copyright Nick Parlante 2017 - privacy