Question: Complete the Java helper method countEmptyString to count the number of empty strings in an array of strings using recursion . You must not use

Complete the Java helper method countEmptyString to count the number of empty strings in an array of strings using recursion.

You must not use any loops or regular expressions. Submissions with loops or regular expressions will not pass.

For example:

Test Result
String[] arr1 = {"123", "", "abc"}; System.out.println(countEmptyString(arr1));
1 
String[] arr2 = {"", "", "", ""}; System.out.println(countEmptyString(arr2));
4 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!