Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Long Repeat by jahmee
def long_repeat(line):
lista = list(line)
licznik = 1
maks_licznik=1
for i in range(1,len(line)):
if lista[i-1]==lista[i]:
licznik+=1
else:
if maks_licznik
Oct. 24, 2017