Skip to content

Files

Latest commit

238dacf · May 30, 2020

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 30, 2020
Dec 1, 2019
Dec 1, 2019

<< [29] Run-length encoding and decoding >>

Run-length encoding is a fast and simple method of encoding strings. The basic idea is to represent repeated successive characters as a single count and character. Implement run-length encoding and decoding. You can assume the string to be encoded have no digits and consists solely of alphabetic characters. You can assume the string to be decoded is valid.

Examples:

>>> coding_problem_29('AAAABBBCCDAA')
'4A3B2C1D2A'

>>> coding_problem_29('4A3B2C1D2A')
'AAAABBBCCDAA'