Question: Need using python 3. Assume that sub and bigstring are strings. Return True if sub is part of bigstring, False otherwise. You must use recursion.

Need using python
3. Assume that sub and bigstring are strings. Return True if sub is part of bigstring, False otherwise. You must use recursion. Your solution cannot use a string funtion or the 'in operation'. Your solution cannot use a loop. Hint: check if sub is the beginning of bigstring, and if not, consider the string obtained by removing the first letter from bigstring
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
