| about | help | done | prefs | create account |
Recursion-1 > array220
prev | next | chance
| Given an array of ints, compute recursively if the array contains somewhere a value followed 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.
array220({1, 2, 20}, 0) → true array220({3, 30}, 0) → true array220({3}, 0) → false ...Save, Compile, Run See Also: Example Code Java help: If Boolean Logic | Strings | While and For Loops | Arrays and Loops
|
Forget It! -- delete my code for this problem 351.0
Copyright Nick Parlante 2006-09 - privacy