id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

copyOdds


Given an array of positive ints, return a new array of length "count" containing the first odd numbers from the original array. The original array will contain at least "count" odd numbers.


copyOdds([3, 2, 4, 5, 8], 2) → [3, 5]
copyOdds([3, 1, 4, 5, 6, 2, 8], 3) → [3, 1, 5]
copyOdds([6, 1, 2, 4, 5, 9], 3) → [1, 5, 9]

...Save, Compile, Run (ctrl-enter)

public int[] copyOdds(int[] nums, int count) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 15

Copyright Nick Parlante 2017 - privacy