(root)/Notes/Notes/notes/run-length encoding.md RSS

Run-Length Encoding

store runs of data as a single value and a count

example the string "gggghhiiiggg" could be encoded as "\x04g\x02h\x03i\x03g"

#stub