Use recursion to implement a method public static boolean find(String text, String str) that tests whether a

Question:

Use recursion to implement a method 

public static boolean find(String text, String str)

that tests whether a given text contains a string. For example, find("Mississippi", "sip") returns true.

Hint: If the text starts with the string you want to match, then you are done. If not, consider the text that you obtain by removing the first character.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: