Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Long Repeat by Julita_Pogorzelska
def long_repeat(line):
"""
length the longest substring that consists of the same char
"""
if line=="":
return 0
licznik=0
max=0
znak=line[0]
for i in line:
if znak==i:
licznik +=1
else:
if licznik>max:
max=licznik
licznik=1
znak=i
if licznik>max:
return licznik
else:
return max
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"
print('"Run" is good. How is "Check"?')
Dec. 26, 2017