Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Long Repeat by viktor.chyrkin
def long_repeat(line: str) -> int:
maxcounter = 1
counter = 1
for i, e in enumerate(line[:-1]):
if e == line[i + 1]:
counter += 1
else:
counter = 1
maxcounter = max(counter, maxcounter)
return len(line) and maxcounter
if __name__ == '__main__':
print(long_repeat('abababa'))
# These "asserts" using only for self-checking and not necessary for auto-testing
assert long_repeat('sdsffffse') == 4, "First"
assert long_repeat('ddvvrwwwrggg') == 3, "Second"
assert long_repeat('abababaab') == 2, "Third"
assert long_repeat('') == 0, "Empty"
print('"Run" is good. How is "Check"?')
Sept. 11, 2021