about | help | code help+videos | done | prefs |
We'll say that a positive int n is "endy" if it is in the range 0..10 or 90..100 (inclusive). Given an array of positive ints, return a new array of length "count" containing the first endy numbers from the original array. Decompose out a separate isEndy(int n) method to test if a number is endy. The original array will contain at least "count" endy numbers. copyEndy([9, 11, 90, 22, 6], 2) → [9, 90] copyEndy([9, 11, 90, 22, 6], 3) → [9, 90, 6] copyEndy([12, 1, 1, 13, 0, 20], 2) → [1, 1] ...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: 233.0
Copyright Nick Parlante 2017 - privacy