about | help | code help+videos | done | prefs |
Given an array of positive ints, return a new array of length "count" containing the first even numbers from the original array. The original array will contain at least "count" even numbers. copyEvens([3, 2, 4, 5, 8], 2) → [2, 4] copyEvens([3, 2, 4, 5, 8], 3) → [2, 4, 8] copyEvens([6, 1, 2, 4, 5, 8], 3) → [6, 2, 4] ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 230.0
Copyright Nick Parlante 2017 - privacy