Problem
Write a recursive function that takes a number n and an array of integers as input and returns true if n is in the given list and false otherwise. You are not allowed to use the any for or while loop and it should be recursive. You can write a helper method.