Question: Create a program that returns the number of double letters in a word using recursion. For example, the word aaron has two double letters and

Create a program that returns the number of double letters in a word using recursion.

For example, the word aaron has two double letters and returns 1. The word carrr returns 2 because there are two pairs including the overlapping pair. These are some of the test cases that your method should pass:

0

aa 1

ab 0

aaa 2

aabb 2

aaabb 3

aaaabbb 5

Please turn in the file Recursion.java which contains the method doubleCounter(String input).

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!