Intangles interview question

Implement Run-Length Encoding and decoding functions.

Interview Answer

Anonymous

3 July 2025

Used an array to keep track of the count of each character while preserving the order of characters, using the 2 pointers appoach.