Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
recursive solution in Clear category for Long Repeat by clx_gg
def long_repeat(line):
"""
length the longest substring that consists of the same char
"""
def match_repetition(x):
if x in line:
return match_repetition(x+x[0])
else:
return len(x)-1
return max(map(match_repetition,line)) if line else 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"
assert long_repeat('abababaab') == 2, "Third"
assert long_repeat('') == 0, "Empty"
print('"Run" is good. How is "Check"?')
April 23, 2019
Comments: