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

 

pais@kinetigram.com > R113_array220
prev  |  next  |  chance

APCS Recursion 1, Problem 13. Given an array of ints, compute recursively if the array contains somewhere a value followed immediately in the array by that value times 10. We'll use the convention of considering only the part of the array that begins at the given index. In this way, a recursive call can pass index+1 to move down the array. The initial call will pass in index as 0.


R113_array220([1, 2, 20], 0) → true
R113_array220([3, 30], 0) → true
R113_array220([3], 0) → false

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

public boolean R113_array220(int[] nums, int index) { }

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: 300

Copyright Nick Parlante 2017 - privacy