| about | help | done | prefs | create account |
AP-1 > copyEvens
prev | next | chance
| 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 See Also: Example Code Java help: If Boolean Logic | Strings | While and For Loops | Arrays and Loops |
Forget It! -- delete my code for this problem 230.0
Copyright Nick Parlante 2006-09 - privacy