Sha256: dba3965deb8c8f2b55f18c122034e80dc19a6d6b0089cf85ef1fef0fa0e8d761

Contents?: true

Size: 795 Bytes

Versions: 60

Compression:

Stored size: 795 Bytes

Contents

Run-length encoding (RLE) is a simple form of data compression, where runs
(consecutive data elements) are replaced by just one data value and count.

For example we can represent the original 53 characters with only 13.

```
"WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB"  ->  "12WB12W3B24WB"
```

RLE allows the original data to be perfectly reconstructed from
the compressed data, which makes it a lossless data compression.

```
"AABCCCDEEEE"  ->  "2AB3CD4E"  ->  "AABCCCDEEEE"
```

For simplicity, you can assume that the unencoded string will only contain
the letters A through Z (either lower or upper case) and whitespace. This way 
data to be encoded will never contain any numbers and numbers inside data to 
be decoded always represent the count for the following character.

Version data entries

60 entries across 60 versions & 1 rubygems

Version Path
trackler-2.1.0.18 common/exercises/run-length-encoding/description.md
trackler-2.1.0.17 common/exercises/run-length-encoding/description.md
trackler-2.1.0.16 common/exercises/run-length-encoding/description.md
trackler-2.1.0.15 common/exercises/run-length-encoding/description.md
trackler-2.1.0.14 common/exercises/run-length-encoding/description.md
trackler-2.1.0.13 common/exercises/run-length-encoding/description.md
trackler-2.1.0.12 common/exercises/run-length-encoding/description.md
trackler-2.1.0.11 common/exercises/run-length-encoding/description.md
trackler-2.1.0.10 common/exercises/run-length-encoding/description.md
trackler-2.1.0.9 common/exercises/run-length-encoding/description.md
trackler-2.1.0.8 common/exercises/run-length-encoding/description.md
trackler-2.1.0.7 common/exercises/run-length-encoding/description.md
trackler-2.1.0.6 common/exercises/run-length-encoding/description.md
trackler-2.1.0.5 common/exercises/run-length-encoding/description.md
trackler-2.1.0.4 common/exercises/run-length-encoding/description.md
trackler-2.1.0.3 common/exercises/run-length-encoding/description.md
trackler-2.1.0.2 common/exercises/run-length-encoding/description.md
trackler-2.1.0.1 common/exercises/run-length-encoding/description.md
trackler-2.1.0.0 common/exercises/run-length-encoding/description.md
trackler-2.0.8.55 common/exercises/run-length-encoding/description.md