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

 

array_moreEvenThanOdd


Given an integer array, return true if it contains more even numbers than odd numbers.


array_moreEvenThanOdd([1, 2, 3, 4, 5]) → false
array_moreEvenThanOdd([1, 1, 2, 2]) → false
array_moreEvenThanOdd([2, 2, 2, 3, 3]) → true

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

public boolean array_moreEvenThanOdd(int[] data) { }

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

Post-solution available

Copyright Nick Parlante 2017 - privacy