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

 

tlsmith2@wsfcs.k12.nc.us > bigSteps
prev  |  next  |  chance

We have an array of heights, representing the altitude along a walking trail. Given start/end indexes into the array, return the number of "big" steps for a walk starting at the start index and ending at the end index. We'll say that step is big if it is 5 or more up or down. The start and end indexes will both be valid indexes into the array with start <= end.


bigSteps([5, 3, 6, 7, 2], 2, 4) → 1
bigSteps([5, 3, 6, 7, 2], 0, 1) → 0
bigSteps([5, 3, 6, 7, 2], 0, 4) → 1

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

public int bigSteps(int[] heights, int start, int end) { }

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: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy