Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
it's not a clever solution solution in Clear category for Long Repeat by piotr.sawicki
def long_repeat(line):
if len(line) == 0: return 0
b_list = [1]
for i in range(len(line)-1):
if line[i+1] == line[i]:
b_list.append(b_list[i]+1)
else:
b_list.append(1)
return max(b_list)
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. 2, 2017
Comments: