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

 

removeLess70


Given an ArrayList of Integers called grades, remove every element that is less than 70. Be sure to return the ArrayList.


removeLess70([90, 80, 70]) → [90, 80, 70]
removeLess70([60, 70, 80]) → [70, 80]
removeLess70([60, 90, 60, 60, 100]) → [90, 100]

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

public List <Integer> removeLess70(List <Integer> grades) }

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

Copyright Nick Parlante 2017 - privacy