about | help | code help+videos | done | prefs |
Given an ArrayList of Doubles, return the ArrayList after removing all elements with a value between 5 and 6 inclusive. removeBetweenFiveAndSixList([0.11, 3.1, 5.0, 7.5]) → [0.11, 3.1, 7.5] removeBetweenFiveAndSixList([0.0, 0.0, 2.0, 3.0, 4.0, 5.0, 5.0, 6.0]) → [0.0, 0.0, 2.0, 3.0, 4.0] removeBetweenFiveAndSixList([6.0, 5.0, 0.2, 0.2, 0.5, 4.0, 5.0, 5.5, 5.9, 0.12, 45.0]) → [0.2, 0.2, 0.5, 4.0, 0.12, 45.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