Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Long Repeat by krzysztof.gonda
def long_repeat(line):
"""
length the longest substring that consists of the same char
"""
longg = 1;
longest = 0;
if(len(line)>0):
for x in range(1,len(line)):
if(line[x]==line[x-1]):
longg+=1
else:
if(longg>longest):
longest=longg
longg=1
if(longest==0): return longg
return longest
return 0
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"?')
Nov. 18, 2017