Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Long Repeat by zimnytam
def long_repeat(line):
liczba_1=1
liczba_2=1
if line=="":
liczba_1=0
else:
n=1
while n < len(line):
if line[n] == line[n-1]:
liczba_2=liczba_2+1
if liczba_2 > liczba_1:
liczba_1=liczba_2
else:
liczba_2=1
n=n+1
return liczba_1
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"?')
Jan. 7, 2018
Comments: