Quiz: Recursion
Let’s attempt the quiz to test what we’ve learned so far about recusion.
We'll cover the following...
Questions
Given an array of integers in increasing order, find if avalue is present in the array using recursion.
Input
An integer array and an integer number.
Output
Return true
if integer found. Otherwise, return false
.