Run length encoding takes all runs of a characters and replaces them with the character written once, followed by the number of times it is repeated. For example, run length encoding converts a sequence of 6 a’s aaaaaa
into only two characters: a6
.
Which of the following pieces of data would most likely benefit the most from using run length encoding?