0
/ 10
Complete the function removeStrLongerThan()
so that it removes from strings in the ArrayList<String> names
that are longer than ...
Complete the function removeStrLongerThan()
so that it removes from strings in the ArrayList<String> names
that are longer than minLen
. The function should return the names
array, that since has been modified. Make sure that names
is a valid (not null), otherwise return null.
Your feedback will appear here when you check your answer.