README

Character with longest consecutive repetition

For a given string s find the character c (or C) with longest consecutive repetition and return:

(c, l)

where l (or L) is the length of the repetition. If there are two or more characters with the same l return the first.

For empty string return:

(‘’, 0)

Source