Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Long Repeat by mikaeldovbnia
def long_repeat(line):
if line == '':
return 0
f = ''
for a, i in enumerate(line):
if a == (len(line) - 1):
f += i
break
if line[a + 1] != i:
f += (i + ' ')
else:
f += i
g = f.split()
j = []
for i in g:
j.append(len(i))
return max(j)
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"?')
April 27, 2022
Comments: