Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 576 Bytes

029.md

File metadata and controls

9 lines (5 loc) · 576 Bytes

Daily Coding Problem: Problem #29 [Easy]

Good morning! Here's your coding interview problem for today.

This problem was asked by Amazon.

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. For example, the string "AAAABBBCCDAA" would be encoded as "4A3B2C1D2A".

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.