about | help | code help+videos | done | prefs |
removeAllTargetV1
Given an ArrayList of Double, and a target Double, return a new ArrayList of Double that has all of the target Double removed. Do not use remove on the original list, instead build a new ArrayList<Double> and return that. removeAllTargetV1([5.0], 0.0) → [5.0] removeAllTargetV1([5.0], 5.0) → [] removeAllTargetV1([], 0.0) → [] ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Copyright Nick Parlante 2017 - privacy