Skip to content

Instantly share code, notes, and snippets.

@ivanrvpereira
Created August 10, 2016 21:15
Show Gist options
  • Save ivanrvpereira/703b9002385cfdce88cf753e8f4db4f5 to your computer and use it in GitHub Desktop.
Save ivanrvpereira/703b9002385cfdce88cf753e8f4db4f5 to your computer and use it in GitHub Desktop.
Exercise
final = aux = ""
counter = 0
for letter in s:
if aux == "":
aux = letter
if letter != aux:
final += str(counter) + aux
aux = letter
counter = 0
counter +=1
else:
final += str(counter) + aux
print(final)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment