Quiz: Recursion
Let’s attempt the quiz to test what we’ve learned so far about recusion.
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
.