about | help | code help+videos | done | prefs |
APCS Recursion 2, Problem 1. Given an array of ints, compute recursively if the array contains a 6. 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. R21_array6([1, 6, 4], 0) → true R21_array6([1, 4], 0) → false R21_array6([6], 0) → true ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 300
Copyright Nick Parlante 2017 - privacy