- 7 To Rle String Rle Data Translates Rle Data Into A Human Readable Representation For Each Run In Order It Should D 1 (69.42 KiB) Viewed 28 times
7. to_rle_string(rle_data) Translates RLE data into a human-readable representation. For each run, in order, it should d
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
7. to_rle_string(rle_data) Translates RLE data into a human-readable representation. For each run, in order, it should d
7. to_rle_string(rle_data) Translates RLE data into a human-readable representation. For each run, in order, it should display the run length in decimal (1-2 digits); the run value in hexadecimal (1 digit); and a delimiter, ':', between runs. (See examples in standalone section.) Ex: to_rle_string([15, 15, 6, 4]) yields string "15f:64". 8. string_to_rle(rle_string) Translates a string in human-readable RLE format (with delimiters) into RLE byte data. (Inverse of #7) Ex: string_to_rle("15f:64") yields list [15, 15, 6, 4].