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

 

longestEvenRun


Define a function that when passed an array, returns the longest stretch of even numbers in the array.

In case of a tie, return the sequence occurring first.


longestEvenRun([]) → []
longestEvenRun([10, 60, 71, 120, 80, 100]) → [120, 80, 100]
longestEvenRun([1, 7, 3, 9]) → []

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

int[] longestEvenRun(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

Difficulty: 5 Post-solution available

Copyright Nick Parlante 2017 - privacy