By completing 8.3.8, you demonstrate that you understand , string manipulation , and algorithm design .
Input: "aaabbc" RLE: 3a2b1c Encode: [3,1, 2,2, 1,3] # (count, code for letter) 8.3 8 create your own encoding codehs answers
Original: Hello World Encoded list: [77, 106, 113, 113, 118, 37, 82, 118, 119, 113, 105] Decoded: Hello World By completing 8
: For each character, look up its encoded value in your dictionary and append it to a new result string. 💻 Sample Solution (Python) By completing 8.3.8