about | help | code help+videos | done | prefs |
array_withoutSevens
Given an integer array, create a new array that contains the same elements as the given array except without any values of 7. array_withoutSevens([5, 6, 7, 8]) → [5, 6, 8] array_withoutSevens([6, 7, 8]) → [6, 8] array_withoutSevens([1, 7, 7, 2]) → [1, 2] ...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