Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Step by step solution in Clear category for Long Repeat by Tical_1000
def long_repeat(line):
if len(line) <2:
return len(line)
prev, count, maxim = "", 0, 0
for letter in line:
if letter == prev:
count += 1
else:
if maxim < count:
maxim = count
count = 1
prev = letter
return max(maxim, count)
if __name__ == '__main__':
#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"?')
Feb. 10, 2019