Write a method called printDuplicates that takes as a parameter a Scanner containing a series of lines. Your method should examine each line looking for consecutive occurrences of the same token on the same line and print each duplicated token, along with the number of times that it appears consecutively. Nonrepeated tokens are not printed. You may ignore the case of repetition across multiple lines (such as if a line ends with a given token and the next line starts with the same token). You may assume that each line of the file contains at least 1 token of input. For example, consider the following input:
hello how how are you you you youI I I am Jack's Jack's smirking smirking smirking smirking revengebow wow wow yippee yippee yo yippee yippee yay yay yayone fish two fish red fish blue fishIt's the Muppet Show, wakka wakka wakka
Your method should produce the following output:
how*2 you*4I*3 Jack's*2 smirking*4wow*2 yippee*2 yippee*2 yay*3
wakka*3
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.